home *** CD-ROM | disk | FTP | other *** search
Text File | 2009-09-07 | 267.7 KB | 7,708 lines |
- //@line 60 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
-
- let Ci = Components.interfaces;
- let Cu = Components.utils;
- Cu.import("resource://gre/modules/XPCOMUtils.jsm");
-
- const nsIWebNavigation = Components.interfaces.nsIWebNavigation;
-
- const MAX_HISTORY_MENU_ITEMS = 15;
-
- // We use this once, for Clear Private Data
- const GLUE_CID = "@mozilla.org/browser/browserglue;1";
-
- var gURIFixup = null;
- var gCharsetMenu = null;
- var gLastBrowserCharset = null;
- var gPrevCharset = null;
- var gURLBar = null;
- var gFindBar = null;
- var gProxyFavIcon = null;
- var gNavigatorBundle = null;
- var gIsLoadingBlank = false;
- var gLastValidURLStr = "";
- var gMustLoadSidebar = false;
- var gProgressMeterPanel = null;
- var gProgressCollapseTimer = null;
- var gPrefService = null;
- var appCore = null;
- var gBrowser = null;
- var gNavToolbox = null;
- var gSidebarCommand = "";
- var gInPrintPreviewMode = false;
- let gDownloadMgr = null;
-
- // Global variable that holds the nsContextMenu instance.
- var gContextMenu = null;
-
- var gChromeState = null; // chrome state before we went into print preview
-
- var gSanitizeListener = null;
-
- var gAutoHideTabbarPrefListener = null;
- var gBookmarkAllTabsHandler = null;
-
- //@line 106 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
-
- //@line 108 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
- var gEditUIVisible = true;
- //@line 110 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
-
- /**
- * We can avoid adding multiple load event listeners and save some time by adding
- * one listener that calls all real handlers.
- */
-
- function pageShowEventHandlers(event)
- {
- // Filter out events that are not about the document load we are interested in
- if (event.originalTarget == content.document) {
- checkForDirectoryListing();
- charsetLoadListener(event);
-
- XULBrowserWindow.asyncUpdateUI();
- }
- }
-
- /**
- * Determine whether or not the content area is displaying a page with frames,
- * and if so, toggle the display of the 'save frame as' menu item.
- **/
- function getContentAreaFrameCount()
- {
- var saveFrameItem = document.getElementById("menu_saveFrame");
- if (!content || !content.frames.length || !isContentFrame(document.commandDispatcher.focusedWindow))
- saveFrameItem.setAttribute("hidden", "true");
- else
- saveFrameItem.removeAttribute("hidden");
- }
-
- function UpdateBackForwardCommands(aWebNavigation)
- {
- var backBroadcaster = document.getElementById("Browser:Back");
- var forwardBroadcaster = document.getElementById("Browser:Forward");
-
- // Avoid setting attributes on broadcasters if the value hasn't changed!
- // Remember, guys, setting attributes on elements is expensive! They
- // get inherited into anonymous content, broadcast to other widgets, etc.!
- // Don't do it if the value hasn't changed! - dwh
-
- var backDisabled = backBroadcaster.hasAttribute("disabled");
- var forwardDisabled = forwardBroadcaster.hasAttribute("disabled");
- if (backDisabled == aWebNavigation.canGoBack) {
- if (backDisabled)
- backBroadcaster.removeAttribute("disabled");
- else
- backBroadcaster.setAttribute("disabled", true);
- }
-
- if (forwardDisabled == aWebNavigation.canGoForward) {
- if (forwardDisabled)
- forwardBroadcaster.removeAttribute("disabled");
- else
- forwardBroadcaster.setAttribute("disabled", true);
- }
- }
-
- //@line 253 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
-
- function BookmarkThisTab()
- {
- var tab = getBrowser().mContextTab;
- if (tab.localName != "tab")
- tab = getBrowser().mCurrentTab;
-
- PlacesCommandHook.bookmarkPage(tab.linkedBrowser,
- PlacesUtils.bookmarksMenuFolderId, true);
- }
-
- /**
- * Initialize the bookmarks toolbar and the menuitem for it.
- */
- function initBookmarksToolbar() {
- var place = PlacesUtils.getQueryStringForFolder(PlacesUtils.bookmarks.toolbarFolder);
- var bt = document.getElementById("bookmarksBarContent");
- if (bt)
- bt.place = place;
-
- document.getElementById("bookmarksToolbarFolderPopup").place = place;
- document.getElementById("bookmarksToolbarFolderMenu").label =
- PlacesUtils.bookmarks.getItemTitle(PlacesUtils.bookmarks.toolbarFolder);
- }
-
- const gSessionHistoryObserver = {
- observe: function(subject, topic, data)
- {
- if (topic != "browser:purge-session-history")
- return;
-
- var backCommand = document.getElementById("Browser:Back");
- backCommand.setAttribute("disabled", "true");
- var fwdCommand = document.getElementById("Browser:Forward");
- fwdCommand.setAttribute("disabled", "true");
-
- if (gURLBar) {
- // Clear undo history of the URL bar
- gURLBar.editor.transactionManager.clear()
- }
- }
- };
-
- /**
- * Given a starting docshell and a URI to look up, find the docshell the URI
- * is loaded in.
- * @param aDocument
- * A document to find instead of using just a URI - this is more specific.
- * @param aDocShell
- * The doc shell to start at
- * @param aSoughtURI
- * The URI that we're looking for
- * @returns The doc shell that the sought URI is loaded in. Can be in
- * subframes.
- */
- function findChildShell(aDocument, aDocShell, aSoughtURI) {
- aDocShell.QueryInterface(Components.interfaces.nsIWebNavigation);
- aDocShell.QueryInterface(Components.interfaces.nsIInterfaceRequestor);
- var doc = aDocShell.getInterface(Components.interfaces.nsIDOMDocument);
- if ((aDocument && doc == aDocument) ||
- (aSoughtURI && aSoughtURI.spec == aDocShell.currentURI.spec))
- return aDocShell;
-
- var node = aDocShell.QueryInterface(Components.interfaces.nsIDocShellTreeNode);
- for (var i = 0; i < node.childCount; ++i) {
- var docShell = node.getChildAt(i);
- docShell = findChildShell(aDocument, docShell, aSoughtURI);
- if (docShell)
- return docShell;
- }
- return null;
- }
-
- const gPopupBlockerObserver = {
- _reportButton: null,
- _kIPM: Components.interfaces.nsIPermissionManager,
-
- onUpdatePageReport: function (aEvent)
- {
- if (aEvent.originalTarget != gBrowser.selectedBrowser)
- return;
-
- if (!this._reportButton)
- this._reportButton = document.getElementById("page-report-button");
-
- if (!gBrowser.pageReport) {
- // Hide the popup blocker statusbar button
- this._reportButton.removeAttribute("blocked");
-
- return;
- }
-
- this._reportButton.setAttribute("blocked", true);
-
- // Only show the notification again if we've not already shown it. Since
- // notifications are per-browser, we don't need to worry about re-adding
- // it.
- if (!gBrowser.pageReport.reported) {
- if (!gPrefService)
- gPrefService = Components.classes["@mozilla.org/preferences-service;1"]
- .getService(Components.interfaces.nsIPrefBranch2);
- if (gPrefService.getBoolPref("privacy.popups.showBrowserMessage")) {
- var bundle_browser = document.getElementById("bundle_browser");
- var brandBundle = document.getElementById("bundle_brand");
- var brandShortName = brandBundle.getString("brandShortName");
- var message;
- var popupCount = gBrowser.pageReport.length;
- //@line 364 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
- var popupButtonText = bundle_browser.getString("popupWarningButtonUnix");
- var popupButtonAccesskey = bundle_browser.getString("popupWarningButtonUnix.accesskey");
- //@line 367 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
- if (popupCount > 1)
- message = bundle_browser.getFormattedString("popupWarningMultiple", [brandShortName, popupCount]);
- else
- message = bundle_browser.getFormattedString("popupWarning", [brandShortName]);
-
- var notificationBox = gBrowser.getNotificationBox();
- var notification = notificationBox.getNotificationWithValue("popup-blocked");
- if (notification) {
- notification.label = message;
- }
- else {
- var buttons = [{
- label: popupButtonText,
- accessKey: popupButtonAccesskey,
- popup: "blockedPopupOptions",
- callback: null
- }];
-
- const priority = notificationBox.PRIORITY_WARNING_MEDIUM;
- notificationBox.appendNotification(message, "popup-blocked",
- "chrome://browser/skin/Info.png",
- priority, buttons);
- }
- }
-
- // Record the fact that we've reported this blocked popup, so we don't
- // show it again.
- gBrowser.pageReport.reported = true;
- }
- },
-
- toggleAllowPopupsForSite: function (aEvent)
- {
- var currentURI = gBrowser.selectedBrowser.webNavigation.currentURI;
- var pm = Components.classes["@mozilla.org/permissionmanager;1"]
- .getService(this._kIPM);
- var shouldBlock = aEvent.target.getAttribute("block") == "true";
- var perm = shouldBlock ? this._kIPM.DENY_ACTION : this._kIPM.ALLOW_ACTION;
- pm.add(currentURI, "popup", perm);
-
- gBrowser.getNotificationBox().removeCurrentNotification();
- },
-
- fillPopupList: function (aEvent)
- {
- var bundle_browser = document.getElementById("bundle_browser");
- // XXXben - rather than using |currentURI| here, which breaks down on multi-framed sites
- // we should really walk the pageReport and create a list of "allow for <host>"
- // menuitems for the common subset of hosts present in the report, this will
- // make us frame-safe.
- //
- // XXXjst - Note that when this is fixed to work with multi-framed sites,
- // also back out the fix for bug 343772 where
- // nsGlobalWindow::CheckOpenAllow() was changed to also
- // check if the top window's location is whitelisted.
- var uri = gBrowser.selectedBrowser.webNavigation.currentURI;
- var blockedPopupAllowSite = document.getElementById("blockedPopupAllowSite");
- try {
- blockedPopupAllowSite.removeAttribute("hidden");
-
- var pm = Components.classes["@mozilla.org/permissionmanager;1"]
- .getService(this._kIPM);
- if (pm.testPermission(uri, "popup") == this._kIPM.ALLOW_ACTION) {
- // Offer an item to block popups for this site, if a whitelist entry exists
- // already for it.
- var blockString = bundle_browser.getFormattedString("popupBlock", [uri.host]);
- blockedPopupAllowSite.setAttribute("label", blockString);
- blockedPopupAllowSite.setAttribute("block", "true");
- }
- else {
- // Offer an item to allow popups for this site
- var allowString = bundle_browser.getFormattedString("popupAllow", [uri.host]);
- blockedPopupAllowSite.setAttribute("label", allowString);
- blockedPopupAllowSite.removeAttribute("block");
- }
- }
- catch (e) {
- blockedPopupAllowSite.setAttribute("hidden", "true");
- }
-
- var item = aEvent.target.lastChild;
- while (item && item.getAttribute("observes") != "blockedPopupsSeparator") {
- var next = item.previousSibling;
- item.parentNode.removeChild(item);
- item = next;
- }
-
- var foundUsablePopupURI = false;
- var pageReport = gBrowser.pageReport;
- if (pageReport) {
- for (var i = 0; i < pageReport.length; ++i) {
- var popupURIspec = pageReport[i].popupWindowURI.spec;
-
- // Sometimes the popup URI that we get back from the pageReport
- // isn't useful (for instance, netscape.com's popup URI ends up
- // being "http://www.netscape.com", which isn't really the URI of
- // the popup they're trying to show). This isn't going to be
- // useful to the user, so we won't create a menu item for it.
- if (popupURIspec == "" || popupURIspec == "about:blank" ||
- popupURIspec == uri.spec)
- continue;
-
- // Because of the short-circuit above, we may end up in a situation
- // in which we don't have any usable popup addresses to show in
- // the menu, and therefore we shouldn't show the separator. However,
- // since we got past the short-circuit, we must've found at least
- // one usable popup URI and thus we'll turn on the separator later.
- foundUsablePopupURI = true;
-
- var menuitem = document.createElement("menuitem");
- var label = bundle_browser.getFormattedString("popupShowPopupPrefix",
- [popupURIspec]);
- menuitem.setAttribute("label", label);
- menuitem.setAttribute("popupWindowURI", popupURIspec);
- menuitem.setAttribute("popupWindowFeatures", pageReport[i].popupWindowFeatures);
- menuitem.setAttribute("popupWindowName", pageReport[i].popupWindowName);
- menuitem.setAttribute("oncommand", "gPopupBlockerObserver.showBlockedPopup(event);");
- menuitem.requestingWindow = pageReport[i].requestingWindow;
- menuitem.requestingDocument = pageReport[i].requestingDocument;
- aEvent.target.appendChild(menuitem);
- }
- }
-
- // Show or hide the separator, depending on whether we added any
- // showable popup addresses to the menu.
- var blockedPopupsSeparator =
- document.getElementById("blockedPopupsSeparator");
- if (foundUsablePopupURI)
- blockedPopupsSeparator.removeAttribute("hidden");
- else
- blockedPopupsSeparator.setAttribute("hidden", true);
-
- var blockedPopupDontShowMessage = document.getElementById("blockedPopupDontShowMessage");
- var showMessage = gPrefService.getBoolPref("privacy.popups.showBrowserMessage");
- blockedPopupDontShowMessage.setAttribute("checked", !showMessage);
- if (aEvent.target.localName == "popup")
- blockedPopupDontShowMessage.setAttribute("label", bundle_browser.getString("popupWarningDontShowFromMessage"));
- else
- blockedPopupDontShowMessage.setAttribute("label", bundle_browser.getString("popupWarningDontShowFromStatusbar"));
- },
-
- showBlockedPopup: function (aEvent)
- {
- var target = aEvent.target;
- var popupWindowURI = target.getAttribute("popupWindowURI");
- var features = target.getAttribute("popupWindowFeatures");
- var name = target.getAttribute("popupWindowName");
-
- var dwi = target.requestingWindow;
-
- // If we have a requesting window and the requesting document is
- // still the current document, open the popup.
- if (dwi && dwi.document == target.requestingDocument) {
- dwi.open(popupWindowURI, name, features);
- }
- },
-
- editPopupSettings: function ()
- {
- var host = "";
- try {
- var uri = gBrowser.selectedBrowser.webNavigation.currentURI;
- host = uri.host;
- }
- catch (e) { }
-
- var bundlePreferences = document.getElementById("bundle_preferences");
- var params = { blockVisible : false,
- sessionVisible : false,
- allowVisible : true,
- prefilledHost : host,
- permissionType : "popup",
- windowTitle : bundlePreferences.getString("popuppermissionstitle"),
- introText : bundlePreferences.getString("popuppermissionstext") };
- var wm = Components.classes["@mozilla.org/appshell/window-mediator;1"]
- .getService(Components.interfaces.nsIWindowMediator);
- var existingWindow = wm.getMostRecentWindow("Browser:Permissions");
- if (existingWindow) {
- existingWindow.initWithParams(params);
- existingWindow.focus();
- }
- else
- window.openDialog("chrome://browser/content/preferences/permissions.xul",
- "_blank", "resizable,dialog=no,centerscreen", params);
- },
-
- dontShowMessage: function ()
- {
- var showMessage = gPrefService.getBoolPref("privacy.popups.showBrowserMessage");
- var firstTime = gPrefService.getBoolPref("privacy.popups.firstTime");
-
- // If the info message is showing at the top of the window, and the user has never
- // hidden the message before, show an info box telling the user where the info
- // will be displayed.
- if (showMessage && firstTime)
- this._displayPageReportFirstTime();
-
- gPrefService.setBoolPref("privacy.popups.showBrowserMessage", !showMessage);
-
- gBrowser.getNotificationBox().removeCurrentNotification();
- },
-
- _displayPageReportFirstTime: function ()
- {
- window.openDialog("chrome://browser/content/pageReportFirstTime.xul", "_blank",
- "dependent");
- }
- };
-
- const gXPInstallObserver = {
- _findChildShell: function (aDocShell, aSoughtShell)
- {
- if (aDocShell == aSoughtShell)
- return aDocShell;
-
- var node = aDocShell.QueryInterface(Components.interfaces.nsIDocShellTreeNode);
- for (var i = 0; i < node.childCount; ++i) {
- var docShell = node.getChildAt(i);
- docShell = this._findChildShell(docShell, aSoughtShell);
- if (docShell == aSoughtShell)
- return docShell;
- }
- return null;
- },
-
- _getBrowser: function (aDocShell)
- {
- var tabbrowser = getBrowser();
- for (var i = 0; i < tabbrowser.browsers.length; ++i) {
- var browser = tabbrowser.getBrowserAtIndex(i);
- if (this._findChildShell(browser.docShell, aDocShell))
- return browser;
- }
- return null;
- },
-
- observe: function (aSubject, aTopic, aData)
- {
- var brandBundle = document.getElementById("bundle_brand");
- var browserBundle = document.getElementById("bundle_browser");
- switch (aTopic) {
- case "xpinstall-install-blocked":
- var installInfo = aSubject.QueryInterface(Components.interfaces.nsIXPIInstallInfo);
- var win = installInfo.originatingWindow;
- var shell = win.QueryInterface(Components.interfaces.nsIInterfaceRequestor)
- .getInterface(Components.interfaces.nsIWebNavigation)
- .QueryInterface(Components.interfaces.nsIDocShell);
- var browser = this._getBrowser(shell);
- if (browser) {
- var host = installInfo.originatingURI.host;
- var brandShortName = brandBundle.getString("brandShortName");
- var notificationName, messageString, buttons;
- if (!gPrefService.getBoolPref("xpinstall.enabled")) {
- notificationName = "xpinstall-disabled"
- if (gPrefService.prefIsLocked("xpinstall.enabled")) {
- messageString = browserBundle.getString("xpinstallDisabledMessageLocked");
- buttons = [];
- }
- else {
- messageString = browserBundle.getFormattedString("xpinstallDisabledMessage",
- [brandShortName, host]);
-
- buttons = [{
- label: browserBundle.getString("xpinstallDisabledButton"),
- accessKey: browserBundle.getString("xpinstallDisabledButton.accesskey"),
- popup: null,
- callback: function editPrefs() {
- gPrefService.setBoolPref("xpinstall.enabled", true);
- return false;
- }
- }];
- }
- }
- else {
- notificationName = "xpinstall"
- messageString = browserBundle.getFormattedString("xpinstallPromptWarning",
- [brandShortName, host]);
-
- buttons = [{
- label: browserBundle.getString("xpinstallPromptAllowButton"),
- accessKey: browserBundle.getString("xpinstallPromptAllowButton.accesskey"),
- popup: null,
- callback: function() {
- var mgr = Components.classes["@mozilla.org/xpinstall/install-manager;1"]
- .createInstance(Components.interfaces.nsIXPInstallManager);
- mgr.initManagerWithInstallInfo(installInfo);
- return false;
- }
- }];
- }
-
- var notificationBox = gBrowser.getNotificationBox(browser);
- if (!notificationBox.getNotificationWithValue(notificationName)) {
- const priority = notificationBox.PRIORITY_WARNING_MEDIUM;
- const iconURL = "chrome://mozapps/skin/update/update.png";
- notificationBox.appendNotification(messageString, notificationName,
- iconURL, priority, buttons);
- }
- }
- break;
- }
- }
- };
-
- function BrowserStartup()
- {
- gBrowser = document.getElementById("content");
-
- var uriToLoad = null;
-
- // window.arguments[0]: URI to load (string), or an nsISupportsArray of
- // nsISupportsStrings to load
- // [1]: character set (string)
- // [2]: referrer (nsIURI)
- // [3]: postData (nsIInputStream)
- // [4]: allowThirdPartyFixup (bool)
- if ("arguments" in window && window.arguments[0])
- uriToLoad = window.arguments[0];
-
- gIsLoadingBlank = uriToLoad == "about:blank";
-
- prepareForStartup();
-
- //@line 694 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
- if (uriToLoad && !gIsLoadingBlank) {
- if (uriToLoad instanceof Components.interfaces.nsISupportsArray) {
- var count = uriToLoad.Count();
- var specs = [];
- for (var i = 0; i < count; i++) {
- var urisstring = uriToLoad.GetElementAt(i).QueryInterface(Components.interfaces.nsISupportsString);
- specs.push(urisstring.data);
- }
-
- // This function throws for certain malformed URIs, so use exception handling
- // so that we don't disrupt startup
- try {
- gBrowser.loadTabs(specs, false, true);
- } catch (e) {}
- }
- else if (window.arguments.length >= 3) {
- loadURI(uriToLoad, window.arguments[2], window.arguments[3] || null,
- window.arguments[4] || false);
- content.focus();
- }
- // Note: loadOneOrMoreURIs *must not* be called if window.arguments.length >= 3.
- // Such callers expect that window.arguments[0] is handled as a single URI.
- else
- loadOneOrMoreURIs(uriToLoad);
- }
- //@line 720 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
-
- var sidebarSplitter;
- if (window.opener && !window.opener.closed) {
- var openerFindBar = window.opener.gFindBar;
- if (openerFindBar && !openerFindBar.hidden &&
- openerFindBar.findMode == gFindBar.FIND_NORMAL)
- gFindBar.open();
-
- var openerSidebarBox = window.opener.document.getElementById("sidebar-box");
- // If the opener had a sidebar, open the same sidebar in our window.
- // The opener can be the hidden window too, if we're coming from the state
- // where no windows are open, and the hidden window has no sidebar box.
- if (openerSidebarBox && !openerSidebarBox.hidden) {
- var sidebarBox = document.getElementById("sidebar-box");
- var sidebarTitle = document.getElementById("sidebar-title");
- sidebarTitle.setAttribute("value", window.opener.document.getElementById("sidebar-title").getAttribute("value"));
- sidebarBox.setAttribute("width", openerSidebarBox.boxObject.width);
- var sidebarCmd = openerSidebarBox.getAttribute("sidebarcommand");
- sidebarBox.setAttribute("sidebarcommand", sidebarCmd);
- // Note: we're setting 'src' on sidebarBox, which is a <vbox>, not on the
- // <browser id="sidebar">. This lets us delay the actual load until
- // delayedStartup().
- sidebarBox.setAttribute("src", window.opener.document.getElementById("sidebar").getAttribute("src"));
- gMustLoadSidebar = true;
-
- sidebarBox.hidden = false;
- sidebarSplitter = document.getElementById("sidebar-splitter");
- sidebarSplitter.hidden = false;
- document.getElementById(sidebarCmd).setAttribute("checked", "true");
- }
- }
- else {
- var box = document.getElementById("sidebar-box");
- if (box.hasAttribute("sidebarcommand")) {
- var commandID = box.getAttribute("sidebarcommand");
- if (commandID) {
- var command = document.getElementById(commandID);
- if (command) {
- gMustLoadSidebar = true;
- box.hidden = false;
- sidebarSplitter = document.getElementById("sidebar-splitter");
- sidebarSplitter.hidden = false;
- command.setAttribute("checked", "true");
- }
- else {
- // Remove the |sidebarcommand| attribute, because the element it
- // refers to no longer exists, so we should assume this sidebar
- // panel has been uninstalled. (249883)
- box.removeAttribute("sidebarcommand");
- }
- }
- }
- }
-
- // Certain kinds of automigration rely on this notification to complete their
- // tasks BEFORE the browser window is shown.
- var obs = Components.classes["@mozilla.org/observer-service;1"].getService(Components.interfaces.nsIObserverService);
- obs.notifyObservers(null, "browser-window-before-show", "");
-
- // Set a sane starting width/height for all resolutions on new profiles.
- if (!document.documentElement.hasAttribute("width")) {
- var defaultWidth = 994, defaultHeight;
- if (screen.availHeight <= 600) {
- document.documentElement.setAttribute("sizemode", "maximized");
- defaultWidth = 610;
- defaultHeight = 450;
- }
- else {
- // Create a narrower window for large or wide-aspect displays, to suggest
- // side-by-side page view.
- if (screen.availWidth >= 1600)
- defaultWidth = (screen.availWidth / 2) - 20;
- defaultHeight = screen.availHeight - 10;
- //@line 794 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
- // On X, we're not currently able to account for the size of the window
- // border. Use 28px as a guess (titlebar + bottom window border)
- defaultHeight -= 28;
- //@line 798 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
- }
- document.documentElement.setAttribute("width", defaultWidth);
- document.documentElement.setAttribute("height", defaultHeight);
- }
-
- if (gURLBar && document.documentElement.getAttribute("chromehidden").indexOf("toolbar") != -1) {
-
- gURLBar.setAttribute("readonly", "true");
- gURLBar.setAttribute("enablehistory", "false");
- }
-
- setTimeout(delayedStartup, 0);
- }
-
- function HandleAppCommandEvent(evt)
- {
- evt.stopPropagation();
- switch (evt.command) {
- case "Back":
- BrowserBack();
- break;
- case "Forward":
- BrowserForward();
- break;
- case "Reload":
- BrowserReloadSkipCache();
- break;
- case "Stop":
- BrowserStop();
- break;
- case "Search":
- BrowserSearch.webSearch();
- break;
- case "Bookmarks":
- toggleSidebar('viewBookmarksSidebar');
- break;
- case "Home":
- BrowserHome();
- break;
- default:
- break;
- }
- }
-
- function prepareForStartup()
- {
- gURLBar = document.getElementById("urlbar");
- gNavigatorBundle = document.getElementById("bundle_browser");
- gProgressMeterPanel = document.getElementById("statusbar-progresspanel");
- gFindBar = document.getElementById("FindToolbar");
- gBrowser.addEventListener("DOMUpdatePageReport", gPopupBlockerObserver.onUpdatePageReport, false);
- // Note: we need to listen to untrusted events, because the pluginfinder XBL
- // binding can't fire trusted ones (runs with page privileges).
- gBrowser.addEventListener("PluginNotFound", gMissingPluginInstaller.newMissingPlugin, true, true);
- gBrowser.addEventListener("PluginBlocklisted", gMissingPluginInstaller.newMissingPlugin, true, true);
- gBrowser.addEventListener("NewPluginInstalled", gMissingPluginInstaller.refreshBrowserAndPlugins, false);
- gBrowser.addEventListener("NewTab", BrowserOpenTab, false);
- window.addEventListener("AppCommand", HandleAppCommandEvent, true);
-
- var webNavigation;
- try {
- // Create the browser instance component.
- appCore = Components.classes["@mozilla.org/appshell/component/browser/instance;1"]
- .createInstance(Components.interfaces.nsIBrowserInstance);
- if (!appCore)
- throw "couldn't create a browser instance";
-
- webNavigation = getWebNavigation();
- if (!webNavigation)
- throw "no XBL binding for browser";
- } catch (e) {
- alert("Error launching browser window:" + e);
- window.close(); // Give up.
- return;
- }
-
- // initialize observers and listeners
- // and give C++ access to gBrowser
- window.XULBrowserWindow = new nsBrowserStatusHandler();
- window.QueryInterface(Ci.nsIInterfaceRequestor)
- .getInterface(nsIWebNavigation)
- .QueryInterface(Ci.nsIDocShellTreeItem).treeOwner
- .QueryInterface(Ci.nsIInterfaceRequestor)
- .getInterface(Ci.nsIXULWindow)
- .XULBrowserWindow = window.XULBrowserWindow;
- window.QueryInterface(Ci.nsIDOMChromeWindow).browserDOMWindow =
- new nsBrowserAccess();
-
- // set default character set if provided
- if ("arguments" in window && window.arguments.length > 1 && window.arguments[1]) {
- if (window.arguments[1].indexOf("charset=") != -1) {
- var arrayArgComponents = window.arguments[1].split("=");
- if (arrayArgComponents) {
- //we should "inherit" the charset menu setting in a new window
- getMarkupDocumentViewer().defaultCharacterSet = arrayArgComponents[1];
- }
- }
- }
-
- // Initialize browser instance..
- appCore.setWebShellWindow(window);
-
- // Manually hook up session and global history for the first browser
- // so that we don't have to load global history before bringing up a
- // window.
- // Wire up session and global history before any possible
- // progress notifications for back/forward button updating
- webNavigation.sessionHistory = Components.classes["@mozilla.org/browser/shistory;1"]
- .createInstance(Components.interfaces.nsISHistory);
- var os = Components.classes["@mozilla.org/observer-service;1"].getService(Components.interfaces.nsIObserverService);
- os.addObserver(gBrowser.browsers[0], "browser:purge-session-history", false);
-
- // remove the disablehistory attribute so the browser cleans up, as
- // though it had done this work itself
- gBrowser.browsers[0].removeAttribute("disablehistory");
-
- // enable global history
- gBrowser.docShell.QueryInterface(Components.interfaces.nsIDocShellHistory).useGlobalHistory = true;
-
- // hook up UI through progress listener
- gBrowser.addProgressListener(window.XULBrowserWindow, Components.interfaces.nsIWebProgress.NOTIFY_ALL);
-
- // setup our common DOMLinkAdded listener
- gBrowser.addEventListener("DOMLinkAdded", DOMLinkHandler, false);
- }
-
- function delayedStartup()
- {
- var os = Components.classes["@mozilla.org/observer-service;1"].getService(Components.interfaces.nsIObserverService);
- os.addObserver(gSessionHistoryObserver, "browser:purge-session-history", false);
- os.addObserver(gXPInstallObserver, "xpinstall-install-blocked", false);
-
- if (!gPrefService)
- gPrefService = Components.classes["@mozilla.org/preferences-service;1"]
- .getService(Components.interfaces.nsIPrefBranch2);
- BrowserOffline.init();
- OfflineApps.init();
-
- gBrowser.addEventListener("pageshow", function(evt) { setTimeout(pageShowEventHandlers, 0, evt); }, true);
-
- window.addEventListener("keypress", onBrowserKeyPress, false);
-
- // Ensure login manager is up and running.
- Cc["@mozilla.org/login-manager;1"].getService(Ci.nsILoginManager);
-
- if (gMustLoadSidebar) {
- var sidebar = document.getElementById("sidebar");
- var sidebarBox = document.getElementById("sidebar-box");
- sidebar.setAttribute("src", sidebarBox.getAttribute("src"));
- }
-
- UpdateUrlbarSearchSplitterState();
-
- try {
- placesMigrationTasks();
- } catch(ex) {}
- initBookmarksToolbar();
- PlacesStarButton.init();
-
- // called when we go into full screen, even if it is
- // initiated by a web page script
- window.addEventListener("fullscreen", onFullScreen, true);
-
- if (gIsLoadingBlank && gURLBar && isElementVisible(gURLBar))
- focusElement(gURLBar);
- else
- focusElement(content);
-
- var navToolbox = getNavToolbox();
- navToolbox.customizeDone = BrowserToolboxCustomizeDone;
- navToolbox.customizeChange = BrowserToolboxCustomizeChange;
-
- // Set up Sanitize Item
- gSanitizeListener = new SanitizeListener();
-
- // Enable/Disable auto-hide tabbar
- gAutoHideTabbarPrefListener = new AutoHideTabbarPrefListener();
- gPrefService.addObserver(gAutoHideTabbarPrefListener.domain,
- gAutoHideTabbarPrefListener, false);
-
- gPrefService.addObserver(gHomeButton.prefDomain, gHomeButton, false);
-
- var homeButton = document.getElementById("home-button");
- gHomeButton.updateTooltip(homeButton);
- gHomeButton.updatePersonalToolbarStyle(homeButton);
-
- //@line 985 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
- // Perform default browser checking (after window opens).
- var shell = getShellService();
- if (shell) {
- var shouldCheck = shell.shouldCheckDefaultBrowser;
- var willRecoverSession = false;
- try {
- var ss = Cc["@mozilla.org/browser/sessionstartup;1"].
- getService(Ci.nsISessionStartup);
- willRecoverSession =
- (ss.sessionType == Ci.nsISessionStartup.RECOVER_SESSION);
- }
- catch (ex) { /* never mind; suppose SessionStore is broken */ }
- if (shouldCheck && !shell.isDefaultBrowser(true) && !willRecoverSession) {
- var brandBundle = document.getElementById("bundle_brand");
- var shellBundle = document.getElementById("bundle_shell");
-
- var brandShortName = brandBundle.getString("brandShortName");
- var promptTitle = shellBundle.getString("setDefaultBrowserTitle");
- var promptMessage = shellBundle.getFormattedString("setDefaultBrowserMessage",
- [brandShortName]);
- var checkboxLabel = shellBundle.getFormattedString("setDefaultBrowserDontAsk",
- [brandShortName]);
- const IPS = Components.interfaces.nsIPromptService;
- var ps = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
- .getService(IPS);
- var checkEveryTime = { value: shouldCheck };
- var rv = ps.confirmEx(window, promptTitle, promptMessage,
- IPS.STD_YES_NO_BUTTONS,
- null, null, null, checkboxLabel, checkEveryTime);
- if (rv == 0)
- shell.setDefaultBrowser(true, false);
- shell.shouldCheckDefaultBrowser = checkEveryTime.value;
- }
- }
- //@line 1020 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
-
- // BiDi UI
- gBidiUI = isBidiEnabled();
- if (gBidiUI) {
- document.getElementById("documentDirection-separator").hidden = false;
- document.getElementById("documentDirection-swap").hidden = false;
- document.getElementById("textfieldDirection-separator").hidden = false;
- document.getElementById("textfieldDirection-swap").hidden = false;
- }
-
- //@line 1036 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
-
- // Initialize the microsummary service by retrieving it, prompting its factory
- // to create its singleton, whose constructor initializes the service.
- try {
- Cc["@mozilla.org/microsummary/service;1"].getService(Ci.nsIMicrosummaryService);
- } catch (ex) {
- Components.utils.reportError("Failed to init microsummary service:\n" + ex);
- }
-
- // Initialize the full zoom setting.
- // We do this before the session restore service gets initialized so we can
- // apply full zoom settings to tabs restored by the session restore service.
- try {
- FullZoom.init();
- }
- catch(ex) {
- Components.utils.reportError("Failed to init content pref service:\n" + ex);
- }
-
- //@line 1073 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
-
- // initialize the session-restore service (in case it's not already running)
- if (document.documentElement.getAttribute("windowtype") == "navigator:browser") {
- try {
- var ss = Cc["@mozilla.org/browser/sessionstore;1"].
- getService(Ci.nsISessionStore);
- ss.init(window);
- } catch(ex) {
- dump("nsSessionStore could not be initialized: " + ex + "\n");
- }
- }
-
- // bookmark-all-tabs command
- gBookmarkAllTabsHandler = new BookmarkAllTabsHandler();
-
- // Attach a listener to watch for "command" events bubbling up from error
- // pages. This lets us fix bugs like 401575 which require error page UI to
- // do privileged things, without letting error pages have any privilege
- // themselves.
- gBrowser.addEventListener("command", BrowserOnCommand, false);
-
- // Delayed initialization of the livemarks update timer.
- // Livemark updates don't need to start until after bookmark UI
- // such as the toolbar has initialized. Starting 5 seconds after
- // delayedStartup in order to stagger this before the download
- // manager starts (see below).
- setTimeout(function() PlacesUtils.livemarks.start(), 5000);
-
- // Initialize the download manager some time after the app starts so that
- // auto-resume downloads begin (such as after crashing or quitting with
- // active downloads) and speeds up the first-load of the download manager UI.
- // If the user manually opens the download manager before the timeout, the
- // downloads will start right away, and getting the service again won't hurt.
- setTimeout(function() {
- gDownloadMgr = Cc["@mozilla.org/download-manager;1"].
- getService(Ci.nsIDownloadManager);
-
- // Initialize the downloads monitor panel listener
- DownloadMonitorPanel.init();
- }, 10000);
-
- //@line 1115 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
- updateEditUIVisibility();
- let placesContext = document.getElementById("placesContext");
- placesContext.addEventListener("popupshowing", updateEditUIVisibility, false);
- placesContext.addEventListener("popuphiding", updateEditUIVisibility, false);
- //@line 1120 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
- }
-
- function BrowserShutdown()
- {
- try {
- FullZoom.destroy();
- }
- catch(ex) {
- Components.utils.reportError(ex);
- }
-
- var os = Components.classes["@mozilla.org/observer-service;1"]
- .getService(Components.interfaces.nsIObserverService);
- os.removeObserver(gSessionHistoryObserver, "browser:purge-session-history");
- os.removeObserver(gXPInstallObserver, "xpinstall-install-blocked");
-
- try {
- gBrowser.removeProgressListener(window.XULBrowserWindow);
- } catch (ex) {
- }
-
- PlacesStarButton.uninit();
-
- try {
- gPrefService.removeObserver(gAutoHideTabbarPrefListener.domain,
- gAutoHideTabbarPrefListener);
- gPrefService.removeObserver(gHomeButton.prefDomain, gHomeButton);
- } catch (ex) {
- Components.utils.reportError(ex);
- }
-
- if (gSanitizeListener)
- gSanitizeListener.shutdown();
-
- BrowserOffline.uninit();
- OfflineApps.uninit();
- DownloadMonitorPanel.uninit();
-
- var windowManager = Components.classes['@mozilla.org/appshell/window-mediator;1'].getService();
- var windowManagerInterface = windowManager.QueryInterface(Components.interfaces.nsIWindowMediator);
- var enumerator = windowManagerInterface.getEnumerator(null);
- enumerator.getNext();
- if (!enumerator.hasMoreElements()) {
- document.persist("sidebar-box", "sidebarcommand");
- document.persist("sidebar-box", "width");
- document.persist("sidebar-box", "src");
- document.persist("sidebar-title", "value");
- }
-
- window.XULBrowserWindow.destroy();
- window.XULBrowserWindow = null;
- window.QueryInterface(Components.interfaces.nsIInterfaceRequestor)
- .getInterface(Components.interfaces.nsIWebNavigation)
- .QueryInterface(Components.interfaces.nsIDocShellTreeItem).treeOwner
- .QueryInterface(Components.interfaces.nsIInterfaceRequestor)
- .getInterface(Components.interfaces.nsIXULWindow)
- .XULBrowserWindow = null;
- window.QueryInterface(Ci.nsIDOMChromeWindow).browserDOMWindow = null;
-
- // Close the app core.
- if (appCore)
- appCore.close();
- }
-
- //@line 1251 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
-
- function AutoHideTabbarPrefListener()
- {
- this.toggleAutoHideTabbar();
- }
-
- AutoHideTabbarPrefListener.prototype =
- {
- domain: "browser.tabs.autoHide",
- observe: function (aSubject, aTopic, aPrefName)
- {
- if (aTopic != "nsPref:changed" || aPrefName != this.domain)
- return;
-
- this.toggleAutoHideTabbar();
- },
-
- toggleAutoHideTabbar: function ()
- {
- if (gBrowser.tabContainer.childNodes.length == 1 &&
- window.toolbar.visible) {
- var aVisible = false;
- try {
- aVisible = !gPrefService.getBoolPref(this.domain);
- }
- catch (e) {
- }
- gBrowser.setStripVisibilityTo(aVisible);
- gPrefService.setBoolPref("browser.tabs.forceHide", false);
- }
- }
- }
-
- function SanitizeListener()
- {
- gPrefService.addObserver(this.promptDomain, this, false);
-
- this._defaultLabel = document.getElementById("sanitizeItem")
- .getAttribute("label");
- this._updateSanitizeItem();
-
- if (gPrefService.prefHasUserValue(this.didSanitizeDomain)) {
- gPrefService.clearUserPref(this.didSanitizeDomain);
- // We need to persist this preference change, since we want to
- // check it at next app start even if the browser exits abruptly
- gPrefService.QueryInterface(Ci.nsIPrefService).savePrefFile(null);
- }
- }
-
- SanitizeListener.prototype =
- {
- promptDomain : "privacy.sanitize.promptOnSanitize",
- didSanitizeDomain : "privacy.sanitize.didShutdownSanitize",
-
- observe: function (aSubject, aTopic, aPrefName)
- {
- this._updateSanitizeItem();
- },
-
- shutdown: function ()
- {
- gPrefService.removeObserver(this.promptDomain, this);
- },
-
- _updateSanitizeItem: function ()
- {
- var label = gPrefService.getBoolPref(this.promptDomain) ?
- gNavigatorBundle.getString("sanitizeWithPromptLabel") :
- this._defaultLabel;
- document.getElementById("sanitizeItem").setAttribute("label", label);
- }
- }
-
- function onBrowserKeyPress(event)
- {
- if (event.altKey && event.keyCode == KeyEvent.DOM_VK_RETURN) {
- // XXXblake Proper fix is to just check whether focus is in the urlbar. However, focus with the autocomplete widget is all
- // hacky and broken and there's no way to do that right now. So this just patches it to ensure that alt+enter works when focus
- // is on a link.
- if (!(document.commandDispatcher.focusedElement instanceof HTMLAnchorElement)) {
- // Don't let winxp beep on ALT+ENTER, since the URL bar uses it.
- event.preventDefault();
- return;
- }
- }
- }
-
- function BrowserNumberTabSelection(event, index)
- {
- // [Ctrl]+[9] always selects the last tab
- if (index == 8)
- index = gBrowser.tabContainer.childNodes.length - 1;
- else if (index >= gBrowser.tabContainer.childNodes.length)
- return;
-
- var oldTab = gBrowser.selectedTab;
- var newTab = gBrowser.tabContainer.childNodes[index];
- if (newTab != oldTab)
- gBrowser.selectedTab = newTab;
-
- event.preventDefault();
- event.stopPropagation();
- }
-
- function gotoHistoryIndex(aEvent)
- {
- var index = aEvent.target.getAttribute("index");
- if (!index)
- return false;
-
- var where = whereToOpenLink(aEvent);
-
- if (where == "current") {
- // Normal click. Go there in the current tab and update session history.
-
- try {
- getBrowser().gotoIndex(index);
- }
- catch(ex) {
- return false;
- }
- return true;
- }
- else {
- // Modified click. Go there in a new tab/window.
- // This code doesn't copy history or work well with framed pages.
-
- var sessionHistory = getWebNavigation().sessionHistory;
- var entry = sessionHistory.getEntryAtIndex(index, false);
- var url = entry.URI.spec;
- openUILinkIn(url, where);
- return true;
- }
- }
-
- function BrowserForward(aEvent, aIgnoreAlt)
- {
- var where = whereToOpenLink(aEvent, false, aIgnoreAlt);
-
- if (where == "current") {
- try {
- getBrowser().goForward();
- }
- catch(ex) {
- }
- }
- else {
- var sessionHistory = getWebNavigation().sessionHistory;
- var currentIndex = sessionHistory.index;
- var entry = sessionHistory.getEntryAtIndex(currentIndex + 1, false);
- var url = entry.URI.spec;
- openUILinkIn(url, where);
- }
- }
-
- function BrowserBack(aEvent, aIgnoreAlt)
- {
- var where = whereToOpenLink(aEvent, false, aIgnoreAlt);
-
- if (where == "current") {
- try {
- getBrowser().goBack();
- }
- catch(ex) {
- }
- }
- else {
- var sessionHistory = getWebNavigation().sessionHistory;
- var currentIndex = sessionHistory.index;
- var entry = sessionHistory.getEntryAtIndex(currentIndex - 1, false);
- var url = entry.URI.spec;
- openUILinkIn(url, where);
- }
- }
-
- function BrowserHandleBackspace()
- {
- switch (gPrefService.getIntPref("browser.backspace_action")) {
- case 0:
- BrowserBack();
- break;
- case 1:
- goDoCommand("cmd_scrollPageUp");
- break;
- }
- }
-
- function BrowserHandleShiftBackspace()
- {
- switch (gPrefService.getIntPref("browser.backspace_action")) {
- case 0:
- BrowserForward();
- break;
- case 1:
- goDoCommand("cmd_scrollPageDown");
- break;
- }
- }
-
- function BrowserStop()
- {
- try {
- const stopFlags = nsIWebNavigation.STOP_ALL;
- getWebNavigation().stop(stopFlags);
- }
- catch(ex) {
- }
- }
-
- function BrowserReload()
- {
- const reloadFlags = nsIWebNavigation.LOAD_FLAGS_NONE;
- return BrowserReloadWithFlags(reloadFlags);
- }
-
- function BrowserReloadSkipCache()
- {
- // Bypass proxy and cache.
- const reloadFlags = nsIWebNavigation.LOAD_FLAGS_BYPASS_PROXY | nsIWebNavigation.LOAD_FLAGS_BYPASS_CACHE;
- return BrowserReloadWithFlags(reloadFlags);
- }
-
- function BrowserHome()
- {
- var homePage = gHomeButton.getHomePage();
- loadOneOrMoreURIs(homePage);
- }
-
- function BrowserGoHome(aEvent)
- {
- if (aEvent && "button" in aEvent &&
- aEvent.button == 2) // right-click: do nothing
- return;
-
- var homePage = gHomeButton.getHomePage();
- var where = whereToOpenLink(aEvent);
- var urls;
-
- // openUILinkIn in utilityOverlay.js doesn't handle loading multiple pages
- switch (where) {
- case "save":
- urls = homePage.split("|");
- saveURL(urls[0], null, null, true); // only save the first page
- break;
- case "current":
- loadOneOrMoreURIs(homePage);
- break;
- case "tabshifted":
- case "tab":
- urls = homePage.split("|");
- var loadInBackground = getBoolPref("browser.tabs.loadBookmarksInBackground", false);
- gBrowser.loadTabs(urls, loadInBackground);
- break;
- case "window":
- OpenBrowserWindow();
- break;
- }
- }
-
- function loadOneOrMoreURIs(aURIString)
- {
- //@line 1520 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
- // This function throws for certain malformed URIs, so use exception handling
- // so that we don't disrupt startup
- try {
- gBrowser.loadTabs(aURIString.split("|"), false, true);
- }
- catch (e) {
- }
- }
-
- function focusAndSelectUrlBar()
- {
- if (gURLBar && isElementVisible(gURLBar) && !gURLBar.readOnly) {
- gURLBar.focus();
- gURLBar.select();
- return true;
- }
- return false;
- }
-
- function openLocation()
- {
- if (window.fullScreen)
- FullScreen.mouseoverToggle(true);
-
- if (focusAndSelectUrlBar())
- return;
- //@line 1563 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
- openDialog("chrome://browser/content/openLocation.xul", "_blank",
- "chrome,modal,titlebar", window);
- }
-
- function openLocationCallback()
- {
- // make sure the DOM is ready
- setTimeout(function() { this.openLocation(); }, 0);
- }
-
- function BrowserOpenTab()
- {
- if (!gBrowser) {
- // If there are no open browser windows, open a new one
- window.openDialog("chrome://browser/content/", "_blank",
- "chrome,all,dialog=no", "about:blank");
- return;
- }
- gBrowser.loadOneTab("about:blank", null, null, null, false, false);
- if (gURLBar)
- gURLBar.focus();
- }
-
- /* Called from the openLocation dialog. This allows that dialog to instruct
- its opener to open a new window and then step completely out of the way.
- Anything less byzantine is causing horrible crashes, rather believably,
- though oddly only on Linux. */
- function delayedOpenWindow(chrome, flags, href, postData)
- {
- // The other way to use setTimeout,
- // setTimeout(openDialog, 10, chrome, "_blank", flags, url),
- // doesn't work here. The extra "magic" extra argument setTimeout adds to
- // the callback function would confuse prepareForStartup() by making
- // window.arguments[1] be an integer instead of null.
- setTimeout(function() { openDialog(chrome, "_blank", flags, href, null, null, postData); }, 10);
- }
-
- /* Required because the tab needs time to set up its content viewers and get the load of
- the URI kicked off before becoming the active content area. */
- function delayedOpenTab(aUrl, aReferrer, aCharset, aPostData, aAllowThirdPartyFixup)
- {
- gBrowser.loadOneTab(aUrl, aReferrer, aCharset, aPostData, false, aAllowThirdPartyFixup);
- }
-
- function BrowserOpenFileWindow()
- {
- // Get filepicker component.
- try {
- const nsIFilePicker = Components.interfaces.nsIFilePicker;
- var fp = Components.classes["@mozilla.org/filepicker;1"].createInstance(nsIFilePicker);
- fp.init(window, gNavigatorBundle.getString("openFile"), nsIFilePicker.modeOpen);
- fp.appendFilters(nsIFilePicker.filterAll | nsIFilePicker.filterText | nsIFilePicker.filterImages |
- nsIFilePicker.filterXML | nsIFilePicker.filterHTML);
-
- if (fp.show() == nsIFilePicker.returnOK)
- openTopWin(fp.fileURL.spec);
- } catch (ex) {
- }
- }
-
- function BrowserCloseTabOrWindow()
- {
- //@line 1632 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
-
- if (gBrowser.tabContainer.childNodes.length > 1) {
- gBrowser.removeCurrentTab();
- return;
- }
-
- //@line 1639 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
- if (gBrowser.localName == "tabbrowser" && window.toolbar.visible &&
- !gPrefService.getBoolPref("browser.tabs.autoHide")) {
- // Replace the remaining tab with a blank one and focus the address bar
- gBrowser.removeCurrentTab();
- if (gURLBar)
- setTimeout(function() { gURLBar.focus(); }, 0);
- return;
- }
- //@line 1648 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
-
- closeWindow(true);
- }
-
- function BrowserTryToCloseWindow()
- {
- if (WindowIsClosing()) {
- if (window.fullScreen) {
- gBrowser.mPanelContainer.removeEventListener("mousemove",
- FullScreen._collapseCallback, false);
- document.removeEventListener("keypress", FullScreen._keyToggleCallback, false);
- document.removeEventListener("popupshown", FullScreen._setPopupOpen, false);
- document.removeEventListener("popuphidden", FullScreen._setPopupOpen, false);
- gPrefService.removeObserver("browser.fullscreen", FullScreen);
-
- var fullScrToggler = document.getElementById("fullscr-toggler");
- if (fullScrToggler) {
- fullScrToggler.removeEventListener("mouseover", FullScreen._expandCallback, false);
- fullScrToggler.removeEventListener("dragenter", FullScreen._expandCallback, false);
- }
- }
-
- window.close(); // WindowIsClosing does all the necessary checks
- }
- }
-
- function loadURI(uri, referrer, postData, allowThirdPartyFixup)
- {
- try {
- if (postData === undefined)
- postData = null;
- var flags = nsIWebNavigation.LOAD_FLAGS_NONE;
- if (allowThirdPartyFixup) {
- flags = nsIWebNavigation.LOAD_FLAGS_ALLOW_THIRD_PARTY_FIXUP;
- }
- getBrowser().loadURIWithFlags(uri, flags, referrer, null, postData);
- } catch (e) {
- }
- }
-
- function BrowserLoadURL(aTriggeringEvent, aPostData) {
- var url = gURLBar.value;
-
- if (aTriggeringEvent instanceof MouseEvent) {
- if (aTriggeringEvent.button == 2)
- return; // Do nothing for right clicks
-
- // We have a mouse event (from the go button), so use the standard
- // UI link behaviors
- openUILink(url, aTriggeringEvent, false, false,
- true /* allow third party fixup */, aPostData);
- return;
- }
-
- if (aTriggeringEvent && aTriggeringEvent.altKey) {
- handleURLBarRevert();
- content.focus();
- gBrowser.loadOneTab(url, null, null, aPostData, false,
- true /* allow third party fixup */);
- aTriggeringEvent.preventDefault();
- aTriggeringEvent.stopPropagation();
- }
- else
- loadURI(url, null, aPostData, true /* allow third party fixup */);
-
- focusElement(content);
- }
-
- function getShortcutOrURI(aURL, aPostDataRef) {
- var shortcutURL = null;
- var keyword = aURL;
- var param = "";
- var searchService = Cc["@mozilla.org/browser/search-service;1"].
- getService(Ci.nsIBrowserSearchService);
-
- var offset = aURL.indexOf(" ");
- if (offset > 0) {
- keyword = aURL.substr(0, offset);
- param = aURL.substr(offset + 1);
- }
-
- if (!aPostDataRef)
- aPostDataRef = {};
-
- var engine = searchService.getEngineByAlias(keyword);
- if (engine) {
- var submission = engine.getSubmission(param, null);
- aPostDataRef.value = submission.postData;
- return submission.uri.spec;
- }
-
- [shortcutURL, aPostDataRef.value] =
- PlacesUtils.getURLAndPostDataForKeyword(keyword);
-
- if (!shortcutURL)
- return aURL;
-
- var postData = "";
- if (aPostDataRef.value)
- postData = unescape(aPostDataRef.value);
-
- if (/%s/i.test(shortcutURL) || /%s/i.test(postData)) {
- var charset = "";
- const re = /^(.*)\&mozcharset=([a-zA-Z][_\-a-zA-Z0-9]+)\s*$/;
- var matches = shortcutURL.match(re);
- if (matches)
- [, shortcutURL, charset] = matches;
- else {
- // Try to get the saved character-set.
- try {
- // makeURI throws if URI is invalid.
- // Will return an empty string if character-set is not found.
- charset = PlacesUtils.history.getCharsetForURI(makeURI(shortcutURL));
- } catch (e) {}
- }
-
- var encodedParam = "";
- if (charset)
- encodedParam = escape(convertFromUnicode(charset, param));
- else // Default charset is UTF-8
- encodedParam = encodeURIComponent(param);
-
- shortcutURL = shortcutURL.replace(/%s/g, encodedParam).replace(/%S/g, param);
-
- if (/%s/i.test(postData)) // POST keyword
- aPostDataRef.value = getPostDataStream(postData, param, encodedParam,
- "application/x-www-form-urlencoded");
- }
- else if (param) {
- // This keyword doesn't take a parameter, but one was provided. Just return
- // the original URL.
- aPostDataRef.value = null;
-
- return aURL;
- }
-
- return shortcutURL;
- }
-
- function getPostDataStream(aStringData, aKeyword, aEncKeyword, aType) {
- var dataStream = Cc["@mozilla.org/io/string-input-stream;1"].
- createInstance(Ci.nsIStringInputStream);
- aStringData = aStringData.replace(/%s/g, aEncKeyword).replace(/%S/g, aKeyword);
- dataStream.data = aStringData;
-
- var mimeStream = Cc["@mozilla.org/network/mime-input-stream;1"].
- createInstance(Ci.nsIMIMEInputStream);
- mimeStream.addHeader("Content-Type", aType);
- mimeStream.addContentLength = true;
- mimeStream.setData(dataStream);
- return mimeStream.QueryInterface(Ci.nsIInputStream);
- }
-
- function readFromClipboard()
- {
- var url;
-
- try {
- // Get clipboard.
- var clipboard = Components.classes["@mozilla.org/widget/clipboard;1"]
- .getService(Components.interfaces.nsIClipboard);
-
- // Create tranferable that will transfer the text.
- var trans = Components.classes["@mozilla.org/widget/transferable;1"]
- .createInstance(Components.interfaces.nsITransferable);
-
- trans.addDataFlavor("text/unicode");
-
- // If available, use selection clipboard, otherwise global one
- if (clipboard.supportsSelectionClipboard())
- clipboard.getData(trans, clipboard.kSelectionClipboard);
- else
- clipboard.getData(trans, clipboard.kGlobalClipboard);
-
- var data = {};
- var dataLen = {};
- trans.getTransferData("text/unicode", data, dataLen);
-
- if (data) {
- data = data.value.QueryInterface(Components.interfaces.nsISupportsString);
- url = data.data.substring(0, dataLen.value / 2);
- }
- } catch (ex) {
- }
-
- return url;
- }
-
- function BrowserViewSourceOfDocument(aDocument)
- {
- var pageCookie;
- var webNav;
-
- // Get the document charset
- var docCharset = "charset=" + aDocument.characterSet;
-
- // Get the nsIWebNavigation associated with the document
- try {
- var win;
- var ifRequestor;
-
- // Get the DOMWindow for the requested document. If the DOMWindow
- // cannot be found, then just use the content window...
- //
- // XXX: This is a bit of a hack...
- win = aDocument.defaultView;
- if (win == window) {
- win = content;
- }
- ifRequestor = win.QueryInterface(Components.interfaces.nsIInterfaceRequestor);
-
- webNav = ifRequestor.getInterface(nsIWebNavigation);
- } catch(err) {
- // If nsIWebNavigation cannot be found, just get the one for the whole
- // window...
- webNav = getWebNavigation();
- }
- //
- // Get the 'PageDescriptor' for the current document. This allows the
- // view-source to access the cached copy of the content rather than
- // refetching it from the network...
- //
- try{
- var PageLoader = webNav.QueryInterface(Components.interfaces.nsIWebPageDescriptor);
-
- pageCookie = PageLoader.currentDescriptor;
- } catch(err) {
- // If no page descriptor is available, just use the view-source URL...
- }
-
- ViewSourceOfURL(webNav.currentURI.spec, pageCookie, aDocument);
- }
-
- function ViewSourceOfURL(aURL, aPageDescriptor, aDocument)
- {
- var utils = window.top.gViewSourceUtils;
- if (getBoolPref("view_source.editor.external", false)) {
- utils.openInExternalEditor(aURL, aPageDescriptor, aDocument);
- }
- else {
- utils.openInInternalViewer(aURL, aPageDescriptor, aDocument);
- }
- }
-
- // doc - document to use for source, or null for this window's document
- // initialTab - name of the initial tab to display, or null for the first tab
- function BrowserPageInfo(doc, initialTab)
- {
- var args = {doc: doc, initialTab: initialTab};
- toOpenDialogByTypeAndUrl("Browser:page-info",
- doc ? doc.location : window.content.document.location,
- "chrome://browser/content/pageinfo/pageInfo.xul",
- "chrome,toolbar,dialog=no,resizable",
- args);
- }
-
- //@line 1953 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
-
- function checkForDirectoryListing()
- {
- if ( "HTTPIndex" in content &&
- content.HTTPIndex instanceof Components.interfaces.nsIHTTPIndex ) {
- content.wrappedJSObject.defaultCharacterset =
- getMarkupDocumentViewer().defaultCharacterSet;
- }
- }
-
- function URLBarSetURI(aURI) {
- var value = getBrowser().userTypedValue;
- var state = "invalid";
-
- if (!value) {
- if (aURI) {
- // If the url has "wyciwyg://" as the protocol, strip it off.
- // Nobody wants to see it on the urlbar for dynamically generated
- // pages.
- if (!gURIFixup)
- gURIFixup = Cc["@mozilla.org/docshell/urifixup;1"]
- .getService(Ci.nsIURIFixup);
- try {
- aURI = gURIFixup.createExposableURI(aURI);
- } catch (ex) {}
- } else {
- aURI = getWebNavigation().currentURI;
- }
-
- if (aURI.spec == "about:blank") {
- // Replace "about:blank" with an empty string
- // only if there's no opener (bug 370555).
- value = content.opener ? aURI.spec : "";
- } else {
- value = losslessDecodeURI(aURI);
- state = "valid";
- }
- }
-
- gURLBar.value = value;
- SetPageProxyState(state);
- }
-
- function losslessDecodeURI(aURI) {
- var value = aURI.spec;
- // Try to decode as UTF-8 if there's no encoding sequence that we would break.
- if (!/%25(?:3B|2F|3F|3A|40|26|3D|2B|24|2C|23)/i.test(value))
- try {
- value = decodeURI(value)
- // 1. decodeURI decodes %25 to %, which creates unintended
- // encoding sequences. Re-encode it, unless it's part of
- // a sequence that survived decodeURI, i.e. one for:
- // ';', '/', '?', ':', '@', '&', '=', '+', '$', ',', '#'
- // (RFC 3987 section 3.2)
- // 2. Re-encode whitespace so that it doesn't get eaten away
- // by the location bar (bug 410726).
- .replace(/%(?!3B|2F|3F|3A|40|26|3D|2B|24|2C|23)|[\r\n\t]/ig,
- encodeURIComponent);
- } catch (e) {}
-
- // Encode invisible characters (soft hyphen, zero-width space, BOM,
- // line and paragraph separator, word joiner, invisible times,
- // invisible separator, object replacement character) (bug 452979)
- value = value.replace(/[\v\x0c\x1c\x1d\x1e\x1f\u00ad\u200b\ufeff\u2028\u2029\u2060\u2062\u2063\ufffc]/g,
- encodeURIComponent);
-
- // Encode bidirectional formatting characters.
- // (RFC 3987 sections 3.2 and 4.1 paragraph 6)
- value = value.replace(/[\u200e\u200f\u202a\u202b\u202c\u202d\u202e]/g,
- encodeURIComponent);
- return value;
- }
-
- // Replace the urlbar's value with the url of the page.
- function handleURLBarRevert() {
- var throbberElement = document.getElementById("navigator-throbber");
- var isScrolling = gURLBar.popupOpen;
-
- gBrowser.userTypedValue = null;
-
- // don't revert to last valid url unless page is NOT loading
- // and user is NOT key-scrolling through autocomplete list
- if ((!throbberElement || !throbberElement.hasAttribute("busy")) && !isScrolling) {
- URLBarSetURI();
-
- // If the value isn't empty and the urlbar has focus, select the value.
- if (gURLBar.value && gURLBar.hasAttribute("focused"))
- gURLBar.select();
- }
-
- // tell widget to revert to last typed text only if the user
- // was scrolling when they hit escape
- return !isScrolling;
- }
-
- function handleURLBarCommand(aTriggeringEvent) {
- if (!gURLBar.value)
- return;
-
- var postData = { };
- canonizeUrl(aTriggeringEvent, postData);
-
- try {
- addToUrlbarHistory(gURLBar.value);
- } catch (ex) {
- // Things may go wrong when adding url to session history,
- // but don't let that interfere with the loading of the url.
- }
-
- BrowserLoadURL(aTriggeringEvent, postData.value);
- }
-
- function canonizeUrl(aTriggeringEvent, aPostDataRef) {
- if (!gURLBar || !gURLBar.value)
- return;
-
- var url = gURLBar.value;
-
- // Only add the suffix when the URL bar value isn't already "URL-like".
- // Since this function is called from handleURLBarCommand, which receives
- // both mouse (from the go button) and keyboard events, we also make sure not
- // to do the fixup unless we get a keyboard event, to match user expectations.
- if (!/^(www|https?)\b|\/\s*$/i.test(url) &&
- (aTriggeringEvent instanceof KeyEvent)) {
- //@line 2080 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
- var accel = aTriggeringEvent.ctrlKey;
- //@line 2082 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
- var shift = aTriggeringEvent.shiftKey;
-
- var suffix = "";
-
- switch (true) {
- case (accel && shift):
- suffix = ".org/";
- break;
- case (shift):
- suffix = ".net/";
- break;
- case (accel):
- try {
- suffix = gPrefService.getCharPref("browser.fixup.alternate.suffix");
- if (suffix.charAt(suffix.length - 1) != "/")
- suffix += "/";
- } catch(e) {
- suffix = ".com/";
- }
- break;
- }
-
- if (suffix) {
- // trim leading/trailing spaces (bug 233205)
- url = url.replace(/^\s+/, "").replace(/\s+$/, "");
-
- // Tack www. and suffix on. If user has appended directories, insert
- // suffix before them (bug 279035). Be careful not to get two slashes.
- // Also, don't add the suffix if it's in the original url (bug 233853).
-
- var firstSlash = url.indexOf("/");
- var existingSuffix = url.indexOf(suffix.substring(0, suffix.length - 1));
-
- // * Logic for slash and existing suffix (example)
- // No slash, no suffix: Add suffix (mozilla)
- // No slash, yes suffix: Add slash (mozilla.com)
- // Yes slash, no suffix: Insert suffix (mozilla/stuff)
- // Yes slash, suffix before slash: Do nothing (mozilla.com/stuff)
- // Yes slash, suffix after slash: Insert suffix (mozilla/?stuff=.com)
-
- if (firstSlash >= 0) {
- if (existingSuffix == -1 || existingSuffix > firstSlash)
- url = url.substring(0, firstSlash) + suffix +
- url.substring(firstSlash + 1);
- } else
- url = url + (existingSuffix == -1 ? suffix : "/");
-
- url = "http://www." + url;
- }
- }
-
- gURLBar.value = getShortcutOrURI(url, aPostDataRef);
-
- // Also update this so the browser display keeps the new value (bug 310651)
- gBrowser.userTypedValue = gURLBar.value;
- }
-
- function UpdateUrlbarSearchSplitterState()
- {
- var splitter = document.getElementById("urlbar-search-splitter");
- var urlbar = document.getElementById("urlbar-container");
- var searchbar = document.getElementById("search-container");
-
- var ibefore = null;
- if (urlbar && searchbar) {
- if (urlbar.nextSibling == searchbar)
- ibefore = searchbar;
- else if (searchbar.nextSibling == urlbar)
- ibefore = urlbar;
- }
-
- if (ibefore) {
- if (!splitter) {
- splitter = document.createElement("splitter");
- splitter.id = "urlbar-search-splitter";
- splitter.setAttribute("resizebefore", "flex");
- splitter.setAttribute("resizeafter", "flex");
- splitter.className = "chromeclass-toolbar-additional";
- }
- urlbar.parentNode.insertBefore(splitter, ibefore);
- } else if (splitter)
- splitter.parentNode.removeChild(splitter);
- }
-
- var LocationBarHelpers = {
- _timeoutID: null,
-
- _searchBegin: function LocBar_searchBegin() {
- function delayedBegin(self) {
- self._timeoutID = null;
- document.getElementById("urlbar-throbber").setAttribute("busy", "true");
- }
-
- this._timeoutID = setTimeout(delayedBegin, 500, this);
- },
-
- _searchComplete: function LocBar_searchComplete() {
- // Did we finish the search before delayedBegin was invoked?
- if (this._timeoutID) {
- clearTimeout(this._timeoutID);
- this._timeoutID = null;
- }
- document.getElementById("urlbar-throbber").removeAttribute("busy");
- }
- };
-
- function UpdatePageProxyState()
- {
- if (gURLBar && gURLBar.value != gLastValidURLStr)
- SetPageProxyState("invalid");
- }
-
- function SetPageProxyState(aState)
- {
- if (!gURLBar)
- return;
-
- if (!gProxyFavIcon)
- gProxyFavIcon = document.getElementById("page-proxy-favicon");
-
- gURLBar.setAttribute("pageproxystate", aState);
- gProxyFavIcon.setAttribute("pageproxystate", aState);
-
- // the page proxy state is set to valid via OnLocationChange, which
- // gets called when we switch tabs.
- if (aState == "valid") {
- gLastValidURLStr = gURLBar.value;
- gURLBar.addEventListener("input", UpdatePageProxyState, false);
-
- PageProxySetIcon(gBrowser.mCurrentBrowser.mIconURL);
- } else if (aState == "invalid") {
- gURLBar.removeEventListener("input", UpdatePageProxyState, false);
- PageProxyClearIcon();
- }
- }
-
- function PageProxySetIcon (aURL)
- {
- if (!gProxyFavIcon)
- return;
-
- if (!aURL)
- PageProxyClearIcon();
- else if (gProxyFavIcon.getAttribute("src") != aURL)
- gProxyFavIcon.setAttribute("src", aURL);
- }
-
- function PageProxyClearIcon ()
- {
- gProxyFavIcon.removeAttribute("src");
- }
-
-
- function PageProxyDragGesture(aEvent)
- {
- if (gProxyFavIcon.getAttribute("pageproxystate") == "valid") {
- nsDragAndDrop.startDrag(aEvent, proxyIconDNDObserver);
- return true;
- }
- return false;
- }
-
- function PageProxyClickHandler(aEvent)
- {
- if (aEvent.button == 1 && gPrefService.getBoolPref("middlemouse.paste"))
- middleMousePaste(aEvent);
- }
-
- function URLBarOnInput(evt)
- {
- gBrowser.userTypedValue = gURLBar.value;
-
- // If the user is interacting with the url bar, get rid of the identity popup
- var ih = getIdentityHandler();
- if(ih._identityPopup)
- ih._identityPopup.hidePopup();
- }
-
- function BrowserImport()
- {
- //@line 2273 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
- window.openDialog("chrome://browser/content/migration/migration.xul",
- "migration", "modal,centerscreen,chrome,resizable=no");
- //@line 2276 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
- }
-
- /**
- * Handle command events bubbling up from error page content
- */
- function BrowserOnCommand(event) {
- // Don't trust synthetic events
- if (!event.isTrusted)
- return;
-
- var ot = event.originalTarget;
- var errorDoc = ot.ownerDocument;
-
- // If the event came from an ssl error page, it is probably either the "Add
- // Exception…" or "Get me out of here!" button
- if (/^about:neterror\?e=nssBadCert/.test(errorDoc.documentURI)) {
- if (ot == errorDoc.getElementById('exceptionDialogButton')) {
- var params = { exceptionAdded : false };
-
- try {
- switch (gPrefService.getIntPref("browser.ssl_override_behavior")) {
- case 2 : // Pre-fetch & pre-populate
- params.prefetchCert = true;
- case 1 : // Pre-populate
- params.location = errorDoc.location.href;
- }
- } catch (e) {
- Components.utils.reportError("Couldn't get ssl_override pref: " + e);
- }
-
- window.openDialog('chrome://pippki/content/exceptionDialog.xul',
- '','chrome,centerscreen,modal', params);
-
- // If the user added the exception cert, attempt to reload the page
- if (params.exceptionAdded)
- errorDoc.location.reload();
- }
- else if (ot == errorDoc.getElementById('getMeOutOfHereButton')) {
- getMeOutOfHere();
- }
- }
- else if (/^about:blocked/.test(errorDoc.documentURI)) {
- // The event came from a button on a malware/phishing block page
-
- if (ot == errorDoc.getElementById('getMeOutButton')) {
- getMeOutOfHere();
- }
- else if (ot == errorDoc.getElementById('reportButton')) {
- // This is the "Why is this site blocked" button. For malware,
- // we can fetch a site-specific report, for phishing, we redirect
- // to the generic page describing phishing protection.
- var formatter = Cc["@mozilla.org/toolkit/URLFormatterService;1"]
- .getService(Components.interfaces.nsIURLFormatter);
-
- if (/e=malwareBlocked/.test(errorDoc.documentURI)) {
- // Get the stop badware "why is this blocked" report url,
- // append the current url, and go there.
- try {
- var reportURL = formatter.formatURLPref("browser.safebrowsing.malware.reportURL");
- reportURL += errorDoc.location.href;
- content.location = reportURL;
- } catch (e) {
- Components.utils.reportError("Couldn't get malware report URL: " + e);
- }
- }
- else if (/e=phishingBlocked/.test(errorDoc.documentURI)) {
- try {
- content.location = formatter.formatURLPref("browser.safebrowsing.warning.infoURL");
- } catch (e) {
- Components.utils.reportError("Couldn't get phishing info URL: " + e);
- }
- }
- }
- else if (ot == errorDoc.getElementById('ignoreWarningButton')) {
- // Allow users to override and continue through to the site,
- // but add a notify bar as a reminder, so that they don't lose
- // track after, e.g., tab switching.
- gBrowser.loadURIWithFlags(content.location.href,
- nsIWebNavigation.LOAD_FLAGS_BYPASS_CLASSIFIER,
- null, null, null);
- var notificationBox = gBrowser.getNotificationBox();
- notificationBox.appendNotification(
- errorDoc.title, /* Re-use the error page's title, e.g. "Reported Web Forgery!" */
- "blocked-badware-page",
- "chrome://global/skin/icons/blacklist_favicon.png",
- notificationBox.PRIORITY_CRITICAL_HIGH,
- null
- );
- }
- }
- }
-
- /**
- * Re-direct the browser to a known-safe page. This function is
- * used when, for example, the user browses to a known malware page
- * and is presented with about:blocked. The "Get me out of here!"
- * button should take the user to the default start page so that even
- * when their own homepage is infected, we can get them somewhere safe.
- */
- function getMeOutOfHere() {
- // Get the start page from the *default* pref branch, not the user's
- var prefs = Cc["@mozilla.org/preferences-service;1"]
- .getService(Ci.nsIPrefService).getDefaultBranch(null);
- var url = "about:blank";
- try {
- url = prefs.getComplexValue("browser.startup.homepage",
- Ci.nsIPrefLocalizedString).data;
- // If url is a pipe-delimited set of pages, just take the first one.
- if (url.indexOf("|") != -1)
- url = url.split("|")[0];
- } catch(e) {
- Components.utils.reportError("Couldn't get homepage pref: " + e);
- }
- content.location = url;
- }
-
- function BrowserFullScreen()
- {
- window.fullScreen = !window.fullScreen;
- }
-
- function onFullScreen()
- {
- FullScreen.toggle();
- }
-
- function getWebNavigation()
- {
- try {
- return gBrowser.webNavigation;
- } catch (e) {
- return null;
- }
- }
-
- function BrowserReloadWithFlags(reloadFlags)
- {
- /* First, we'll try to use the session history object to reload so
- * that framesets are handled properly. If we're in a special
- * window (such as view-source) that has no session history, fall
- * back on using the web navigation's reload method.
- */
-
- var webNav = getWebNavigation();
- try {
- var sh = webNav.sessionHistory;
- if (sh)
- webNav = sh.QueryInterface(nsIWebNavigation);
- } catch (e) {
- }
-
- try {
- webNav.reload(reloadFlags);
- } catch (e) {
- }
- }
-
- function toggleAffectedChrome(aHide)
- {
- // chrome to toggle includes:
- // (*) menubar
- // (*) navigation bar
- // (*) bookmarks toolbar
- // (*) tabstrip
- // (*) browser messages
- // (*) sidebar
- // (*) find bar
- // (*) statusbar
-
- getNavToolbox().hidden = aHide;
- if (aHide)
- {
- gChromeState = {};
- var sidebar = document.getElementById("sidebar-box");
- gChromeState.sidebarOpen = !sidebar.hidden;
- gSidebarCommand = sidebar.getAttribute("sidebarcommand");
-
- gChromeState.hadTabStrip = gBrowser.getStripVisibility();
- gBrowser.setStripVisibilityTo(false);
-
- var notificationBox = gBrowser.getNotificationBox();
- gChromeState.notificationsOpen = !notificationBox.notificationsHidden;
- notificationBox.notificationsHidden = aHide;
-
- document.getElementById("sidebar").setAttribute("src", "about:blank");
- var statusbar = document.getElementById("status-bar");
- gChromeState.statusbarOpen = !statusbar.hidden;
- statusbar.hidden = aHide;
-
- gChromeState.findOpen = !gFindBar.hidden;
- gFindBar.close();
- }
- else {
- if (gChromeState.hadTabStrip) {
- gBrowser.setStripVisibilityTo(true);
- }
-
- if (gChromeState.notificationsOpen) {
- gBrowser.getNotificationBox().notificationsHidden = aHide;
- }
-
- if (gChromeState.statusbarOpen) {
- var statusbar = document.getElementById("status-bar");
- statusbar.hidden = aHide;
- }
-
- if (gChromeState.findOpen)
- gFindBar.open();
- }
-
- if (gChromeState.sidebarOpen)
- toggleSidebar(gSidebarCommand);
- }
-
- function onEnterPrintPreview()
- {
- gInPrintPreviewMode = true;
- toggleAffectedChrome(true);
- }
-
- function onExitPrintPreview()
- {
- // restore chrome to original state
- gInPrintPreviewMode = false;
- FullZoom.setSettingValue();
- toggleAffectedChrome(false);
- }
-
- function getPPBrowser()
- {
- return getBrowser();
- }
-
- function getMarkupDocumentViewer()
- {
- return gBrowser.markupDocumentViewer;
- }
-
- /**
- * Content area tooltip.
- * XXX - this must move into XBL binding/equiv! Do not want to pollute
- * browser.js with functionality that can be encapsulated into
- * browser widget. TEMPORARY!
- *
- * NOTE: Any changes to this routine need to be mirrored in ChromeListener::FindTitleText()
- * (located in mozilla/embedding/browser/webBrowser/nsDocShellTreeOwner.cpp)
- * which performs the same function, but for embedded clients that
- * don't use a XUL/JS layer. It is important that the logic of
- * these two routines be kept more or less in sync.
- * (pinkerton)
- **/
- function FillInHTMLTooltip(tipElement)
- {
- var retVal = false;
- if (tipElement.namespaceURI == "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul")
- return retVal;
-
- const XLinkNS = "http://www.w3.org/1999/xlink";
-
-
- var titleText = null;
- var XLinkTitleText = null;
- var direction = tipElement.ownerDocument.dir;
-
- while (!titleText && !XLinkTitleText && tipElement) {
- if (tipElement.nodeType == Node.ELEMENT_NODE) {
- titleText = tipElement.getAttribute("title");
- XLinkTitleText = tipElement.getAttributeNS(XLinkNS, "title");
- var defView = tipElement.ownerDocument.defaultView;
- // XXX Work around bug 350679:
- // "Tooltips can be fired in documents with no view".
- if (!defView)
- return retVal;
- direction = defView.getComputedStyle(tipElement, "")
- .getPropertyValue("direction");
- }
- tipElement = tipElement.parentNode;
- }
-
- var tipNode = document.getElementById("aHTMLTooltip");
- tipNode.style.direction = direction;
-
- for each (var t in [titleText, XLinkTitleText]) {
- if (t && /\S/.test(t)) {
-
- // Per HTML 4.01 6.2 (CDATA section), literal CRs and tabs should be
- // replaced with spaces, and LFs should be removed entirely.
- // XXX Bug 322270: We don't preserve the result of entities like
,
- // which should result in a line break in the tooltip, because we can't
- // distinguish that from a literal character in the source by this point.
- t = t.replace(/[\r\t]/g, ' ');
- t = t.replace(/\n/g, '');
-
- tipNode.setAttribute("label", t);
- retVal = true;
- }
- }
-
- return retVal;
- }
-
- var proxyIconDNDObserver = {
- onDragStart: function (aEvent, aXferData, aDragAction)
- {
- var value = content.location.href;
- var urlString = value + "\n" + content.document.title;
- var htmlString = "<a href=\"" + value + "\">" + value + "</a>";
-
- aXferData.data = new TransferData();
- aXferData.data.addDataForFlavour("text/x-moz-url", urlString);
- aXferData.data.addDataForFlavour("text/unicode", value);
- aXferData.data.addDataForFlavour("text/html", htmlString);
-
- // we're copying the URL from the proxy icon, not moving
- // we specify all of them though, because d&d sucks and OS's
- // get confused if they don't get the one they want
- aDragAction.action =
- Components.interfaces.nsIDragService.DRAGDROP_ACTION_COPY |
- Components.interfaces.nsIDragService.DRAGDROP_ACTION_MOVE |
- Components.interfaces.nsIDragService.DRAGDROP_ACTION_LINK;
- }
- }
-
- var homeButtonObserver = {
- onDrop: function (aEvent, aXferData, aDragSession)
- {
- var url = transferUtils.retrieveURLFromData(aXferData.data, aXferData.flavour.contentType);
- setTimeout(openHomeDialog, 0, url);
- },
-
- onDragOver: function (aEvent, aFlavour, aDragSession)
- {
- var statusTextFld = document.getElementById("statusbar-display");
- statusTextFld.label = gNavigatorBundle.getString("droponhomebutton");
- aDragSession.dragAction = Components.interfaces.nsIDragService.DRAGDROP_ACTION_LINK;
- },
-
- onDragExit: function (aEvent, aDragSession)
- {
- var statusTextFld = document.getElementById("statusbar-display");
- statusTextFld.label = "";
- },
-
- getSupportedFlavours: function ()
- {
- var flavourSet = new FlavourSet();
- flavourSet.appendFlavour("application/x-moz-file", "nsIFile");
- flavourSet.appendFlavour("text/x-moz-url");
- flavourSet.appendFlavour("text/unicode");
- return flavourSet;
- }
- }
-
- function openHomeDialog(aURL)
- {
- var promptService = Components.classes["@mozilla.org/embedcomp/prompt-service;1"].getService(Components.interfaces.nsIPromptService);
- var promptTitle = gNavigatorBundle.getString("droponhometitle");
- var promptMsg = gNavigatorBundle.getString("droponhomemsg");
- var pressedVal = promptService.confirmEx(window, promptTitle, promptMsg,
- promptService.STD_YES_NO_BUTTONS,
- null, null, null, null, {value:0});
-
- if (pressedVal == 0) {
- try {
- var str = Components.classes["@mozilla.org/supports-string;1"]
- .createInstance(Components.interfaces.nsISupportsString);
- str.data = aURL;
- gPrefService.setComplexValue("browser.startup.homepage",
- Components.interfaces.nsISupportsString, str);
- var homeButton = document.getElementById("home-button");
- homeButton.setAttribute("tooltiptext", aURL);
- } catch (ex) {
- dump("Failed to set the home page.\n"+ex+"\n");
- }
- }
- }
-
- var bookmarksButtonObserver = {
- onDrop: function (aEvent, aXferData, aDragSession)
- {
- var split = aXferData.data.split("\n");
- var url = split[0];
- if (url != aXferData.data) // do nothing if it's not a valid URL
- PlacesUIUtils.showMinimalAddBookmarkUI(makeURI(url), split[1]);
- },
-
- onDragOver: function (aEvent, aFlavour, aDragSession)
- {
- var statusTextFld = document.getElementById("statusbar-display");
- statusTextFld.label = gNavigatorBundle.getString("droponbookmarksbutton");
- aDragSession.dragAction = Components.interfaces.nsIDragService.DRAGDROP_ACTION_LINK;
- },
-
- onDragExit: function (aEvent, aDragSession)
- {
- var statusTextFld = document.getElementById("statusbar-display");
- statusTextFld.label = "";
- },
-
- getSupportedFlavours: function ()
- {
- var flavourSet = new FlavourSet();
- flavourSet.appendFlavour("application/x-moz-file", "nsIFile");
- flavourSet.appendFlavour("text/x-moz-url");
- flavourSet.appendFlavour("text/unicode");
- return flavourSet;
- }
- }
-
- var newTabButtonObserver = {
- onDragOver: function(aEvent, aFlavour, aDragSession)
- {
- var statusTextFld = document.getElementById("statusbar-display");
- statusTextFld.label = gNavigatorBundle.getString("droponnewtabbutton");
- aEvent.target.setAttribute("dragover", "true");
- return true;
- },
- onDragExit: function (aEvent, aDragSession)
- {
- var statusTextFld = document.getElementById("statusbar-display");
- statusTextFld.label = "";
- aEvent.target.removeAttribute("dragover");
- },
- onDrop: function (aEvent, aXferData, aDragSession)
- {
- var xferData = aXferData.data.split("\n");
- var draggedText = xferData[0] || xferData[1];
- var postData = {};
- var url = getShortcutOrURI(draggedText, postData);
- if (url) {
- nsDragAndDrop.dragDropSecurityCheck(aEvent, aDragSession, url);
- // allow third-party services to fixup this URL
- openNewTabWith(url, null, postData.value, aEvent, true);
- }
- },
- getSupportedFlavours: function ()
- {
- var flavourSet = new FlavourSet();
- flavourSet.appendFlavour("text/unicode");
- flavourSet.appendFlavour("text/x-moz-url");
- flavourSet.appendFlavour("application/x-moz-file", "nsIFile");
- return flavourSet;
- }
- }
-
- var newWindowButtonObserver = {
- onDragOver: function(aEvent, aFlavour, aDragSession)
- {
- var statusTextFld = document.getElementById("statusbar-display");
- statusTextFld.label = gNavigatorBundle.getString("droponnewwindowbutton");
- aEvent.target.setAttribute("dragover", "true");
- return true;
- },
- onDragExit: function (aEvent, aDragSession)
- {
- var statusTextFld = document.getElementById("statusbar-display");
- statusTextFld.label = "";
- aEvent.target.removeAttribute("dragover");
- },
- onDrop: function (aEvent, aXferData, aDragSession)
- {
- var xferData = aXferData.data.split("\n");
- var draggedText = xferData[0] || xferData[1];
- var postData = {};
- var url = getShortcutOrURI(draggedText, postData);
- if (url) {
- nsDragAndDrop.dragDropSecurityCheck(aEvent, aDragSession, url);
- // allow third-party services to fixup this URL
- openNewWindowWith(url, null, postData.value, true);
- }
- },
- getSupportedFlavours: function ()
- {
- var flavourSet = new FlavourSet();
- flavourSet.appendFlavour("text/unicode");
- flavourSet.appendFlavour("text/x-moz-url");
- flavourSet.appendFlavour("application/x-moz-file", "nsIFile");
- return flavourSet;
- }
- }
-
- var DownloadsButtonDNDObserver = {
- /////////////////////////////////////////////////////////////////////////////
- // nsDragAndDrop
- onDragOver: function (aEvent, aFlavour, aDragSession)
- {
- var statusTextFld = document.getElementById("statusbar-display");
- statusTextFld.label = gNavigatorBundle.getString("dropondownloadsbutton");
- aDragSession.canDrop = (aFlavour.contentType == "text/x-moz-url" ||
- aFlavour.contentType == "text/unicode");
- },
-
- onDragExit: function (aEvent, aDragSession)
- {
- var statusTextFld = document.getElementById("statusbar-display");
- statusTextFld.label = "";
- },
-
- onDrop: function (aEvent, aXferData, aDragSession)
- {
- var split = aXferData.data.split("\n");
- var url = split[0];
- if (url != aXferData.data) { //do nothing, not a valid URL
- nsDragAndDrop.dragDropSecurityCheck(aEvent, aDragSession, url);
-
- var name = split[1];
- saveURL(url, name, null, true, true);
- }
- },
- getSupportedFlavours: function ()
- {
- var flavourSet = new FlavourSet();
- flavourSet.appendFlavour("text/x-moz-url");
- flavourSet.appendFlavour("text/unicode");
- return flavourSet;
- }
- }
-
- const DOMLinkHandler = {
- handleEvent: function (event) {
- switch (event.type) {
- case "DOMLinkAdded":
- this.onLinkAdded(event);
- break;
- }
- },
- onLinkAdded: function (event) {
- var link = event.originalTarget;
- var rel = link.rel && link.rel.toLowerCase();
- if (!link || !link.ownerDocument || !rel || !link.href)
- return;
-
- var feedAdded = false;
- var iconAdded = false;
- var searchAdded = false;
- var relStrings = rel.split(/\s+/);
- var rels = {};
- for (let i = 0; i < relStrings.length; i++)
- rels[relStrings[i]] = true;
-
- for (let relVal in rels) {
- switch (relVal) {
- case "feed":
- case "alternate":
- if (!feedAdded) {
- if (!rels.feed && rels.alternate && rels.stylesheet)
- break;
-
- var feed = { title: link.title, href: link.href, type: link.type };
- if (isValidFeed(feed, link.ownerDocument.nodePrincipal, rels.feed)) {
- FeedHandler.addFeed(feed, link.ownerDocument);
- feedAdded = true;
- }
- }
- break;
- case "icon":
- if (!iconAdded) {
- if (!gPrefService.getBoolPref("browser.chrome.site_icons"))
- break;
-
- var targetDoc = link.ownerDocument;
- var ios = Cc["@mozilla.org/network/io-service;1"].
- getService(Ci.nsIIOService);
- var uri = ios.newURI(link.href, targetDoc.characterSet, null);
-
- if (gBrowser.isFailedIcon(uri))
- break;
-
- // Verify that the load of this icon is legal.
- // error pages can load their favicon, to be on the safe side,
- // only allow chrome:// favicons
- const aboutNeterr = /^about:neterror\?/;
- const aboutBlocked = /^about:blocked\?/;
- if (!(aboutNeterr.test(targetDoc.documentURI) ||
- aboutBlocked.test(targetDoc.documentURI)) ||
- !uri.schemeIs("chrome")) {
- var ssm = Cc["@mozilla.org/scriptsecuritymanager;1"].
- getService(Ci.nsIScriptSecurityManager);
- try {
- ssm.checkLoadURIWithPrincipal(targetDoc.nodePrincipal, uri,
- Ci.nsIScriptSecurityManager.DISALLOW_SCRIPT);
- } catch(e) {
- break;
- }
- }
-
- try {
- var contentPolicy = Cc["@mozilla.org/layout/content-policy;1"].
- getService(Ci.nsIContentPolicy);
- } catch(e) {
- break; // Refuse to load if we can't do a security check.
- }
-
- // Security says okay, now ask content policy
- if (contentPolicy.shouldLoad(Ci.nsIContentPolicy.TYPE_IMAGE,
- uri, targetDoc.documentURIObject,
- link, link.type, null)
- != Ci.nsIContentPolicy.ACCEPT)
- break;
-
- var browserIndex = gBrowser.getBrowserIndexForDocument(targetDoc);
- // no browser? no favicon.
- if (browserIndex == -1)
- break;
-
- var tab = gBrowser.mTabContainer.childNodes[browserIndex];
- gBrowser.setIcon(tab, link.href);
- iconAdded = true;
- }
- break;
- case "search":
- if (!searchAdded) {
- var type = link.type && link.type.toLowerCase();
- type = type.replace(/^\s+|\s*(?:;.*)?$/g, "");
-
- if (type == "application/opensearchdescription+xml" && link.title &&
- /^(?:https?|ftp):/i.test(link.href)) {
- var engine = { title: link.title, href: link.href };
- BrowserSearch.addEngine(engine, link.ownerDocument);
- searchAdded = true;
- }
- }
- break;
- }
- }
- }
- }
-
- const BrowserSearch = {
- addEngine: function(engine, targetDoc) {
- if (!this.searchBar)
- return;
-
- var browser = gBrowser.getBrowserForDocument(targetDoc);
-
- // Check to see whether we've already added an engine with this title
- if (browser.engines) {
- if (browser.engines.some(function (e) e.title == engine.title))
- return;
- }
-
- // Append the URI and an appropriate title to the browser data.
- var iconURL = null;
- if (gBrowser.shouldLoadFavIcon(browser.currentURI))
- iconURL = browser.currentURI.prePath + "/favicon.ico";
-
- var hidden = false;
- // If this engine (identified by title) is already in the list, add it
- // to the list of hidden engines rather than to the main list.
- // XXX This will need to be changed when engines are identified by URL;
- // see bug 335102.
- var searchService = Cc["@mozilla.org/browser/search-service;1"].
- getService(Ci.nsIBrowserSearchService);
- if (searchService.getEngineByName(engine.title))
- hidden = true;
-
- var engines = (hidden ? browser.hiddenEngines : browser.engines) || [];
-
- engines.push({ uri: engine.href,
- title: engine.title,
- icon: iconURL });
-
- if (hidden)
- browser.hiddenEngines = engines;
- else {
- browser.engines = engines;
- if (browser == gBrowser.mCurrentBrowser)
- this.updateSearchButton();
- }
- },
-
- /**
- * Update the browser UI to show whether or not additional engines are
- * available when a page is loaded or the user switches tabs to a page that
- * has search engines.
- */
- updateSearchButton: function() {
- var searchBar = this.searchBar;
-
- // The search bar binding might not be applied even though the element is
- // in the document (e.g. when the navigation toolbar is hidden), so check
- // for .searchButton specifically.
- if (!searchBar || !searchBar.searchButton)
- return;
-
- var engines = gBrowser.mCurrentBrowser.engines;
- if (engines && engines.length > 0)
- searchBar.searchButton.setAttribute("addengines", "true");
- else
- searchBar.searchButton.removeAttribute("addengines");
- },
-
- /**
- * Gives focus to the search bar, if it is present on the toolbar, or loads
- * the default engine's search form otherwise. For Mac, opens a new window
- * or focuses an existing window, if necessary.
- */
- webSearch: function BrowserSearch_webSearch() {
- //@line 2997 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
- if (window.fullScreen)
- FullScreen.mouseoverToggle(true);
-
- var searchBar = this.searchBar;
- if (isElementVisible(searchBar)) {
- searchBar.select();
- searchBar.focus();
- } else {
- var ss = Cc["@mozilla.org/browser/search-service;1"].
- getService(Ci.nsIBrowserSearchService);
- var searchForm = ss.defaultEngine.searchForm;
- loadURI(searchForm, null, null, false);
- }
- },
-
- /**
- * Loads a search results page, given a set of search terms. Uses the current
- * engine if the search bar is visible, or the default engine otherwise.
- *
- * @param searchText
- * The search terms to use for the search.
- *
- * @param useNewTab
- * Boolean indicating whether or not the search should load in a new
- * tab.
- */
- loadSearch: function BrowserSearch_search(searchText, useNewTab) {
- var ss = Cc["@mozilla.org/browser/search-service;1"].
- getService(Ci.nsIBrowserSearchService);
- var engine;
-
- // If the search bar is visible, use the current engine, otherwise, fall
- // back to the default engine.
- if (isElementVisible(this.searchBar))
- engine = ss.currentEngine;
- else
- engine = ss.defaultEngine;
-
- var submission = engine.getSubmission(searchText, null); // HTML response
-
- // getSubmission can return null if the engine doesn't have a URL
- // with a text/html response type. This is unlikely (since
- // SearchService._addEngineToStore() should fail for such an engine),
- // but let's be on the safe side.
- if (!submission)
- return;
-
- if (useNewTab) {
- getBrowser().loadOneTab(submission.uri.spec, null, null,
- submission.postData, null, false);
- } else
- loadURI(submission.uri.spec, null, submission.postData, false);
- },
-
- /**
- * Returns the search bar element if it is present in the toolbar, null otherwise.
- */
- get searchBar() {
- return document.getElementById("searchbar");
- },
-
- loadAddEngines: function BrowserSearch_loadAddEngines() {
- var newWindowPref = gPrefService.getIntPref("browser.link.open_newwindow");
- var where = newWindowPref == 3 ? "tab" : "window";
- var regionBundle = document.getElementById("bundle_browser_region");
- var searchEnginesURL = formatURL("browser.search.searchEnginesURL", true);
- openUILinkIn(searchEnginesURL, where);
- }
- }
-
- function FillHistoryMenu(aParent) {
- // Remove old entries if any
- var children = aParent.childNodes;
- for (var i = children.length - 1; i >= 0; --i) {
- if (children[i].hasAttribute("index"))
- aParent.removeChild(children[i]);
- }
-
- var webNav = getWebNavigation();
- var sessionHistory = webNav.sessionHistory;
- var bundle_browser = document.getElementById("bundle_browser");
-
- var count = sessionHistory.count;
- var index = sessionHistory.index;
- var end;
-
- if (count <= 1) // don't display the popup for a single item
- return false;
-
- var half_length = Math.floor(MAX_HISTORY_MENU_ITEMS / 2);
- var start = Math.max(index - half_length, 0);
- end = Math.min(start == 0 ? MAX_HISTORY_MENU_ITEMS : index + half_length + 1, count);
- if (end == count)
- start = Math.max(count - MAX_HISTORY_MENU_ITEMS, 0);
-
- var tooltipBack = bundle_browser.getString("tabHistory.goBack");
- var tooltipCurrent = bundle_browser.getString("tabHistory.current");
- var tooltipForward = bundle_browser.getString("tabHistory.goForward");
-
- for (var j = end - 1; j >= start; j--) {
- let item = document.createElement("menuitem");
- let entry = sessionHistory.getEntryAtIndex(j, false);
-
- item.setAttribute("label", entry.title || entry.URI.spec);
- item.setAttribute("index", j);
-
- if (j != index) {
- try {
- let iconURL = Cc["@mozilla.org/browser/favicon-service;1"]
- .getService(Ci.nsIFaviconService)
- .getFaviconForPage(entry.URI).spec;
- item.style.listStyleImage = "url(" + iconURL + ")";
- } catch (ex) {}
- }
-
- if (j < index) {
- item.className = "unified-nav-back menuitem-iconic";
- item.setAttribute("tooltiptext", tooltipBack);
- } else if (j == index) {
- item.setAttribute("type", "radio");
- item.setAttribute("checked", "true");
- item.className = "unified-nav-current";
- item.setAttribute("tooltiptext", tooltipCurrent);
- } else {
- item.className = "unified-nav-forward menuitem-iconic";
- item.setAttribute("tooltiptext", tooltipForward);
- }
-
- aParent.appendChild(item);
- }
- return true;
- }
-
- function addToUrlbarHistory(aUrlToAdd)
- {
- if (!aUrlToAdd)
- return;
- if (aUrlToAdd.search(/[\x00-\x1F]/) != -1) // don't store bad URLs
- return;
-
- try {
- if (aUrlToAdd.indexOf(" ") == -1) {
- PlacesUIUtils.markPageAsTyped(aUrlToAdd);
- }
- }
- catch(ex) {
- }
- }
-
- function toJavaScriptConsole()
- {
- toOpenWindowByType("global:console", "chrome://global/content/console.xul");
- }
-
- function BrowserDownloadsUI()
- {
- Cc["@mozilla.org/download-manager-ui;1"].
- getService(Ci.nsIDownloadManagerUI).show(window);
- }
-
- function toOpenWindowByType(inType, uri, features)
- {
- var windowManager = Components.classes['@mozilla.org/appshell/window-mediator;1'].getService();
- var windowManagerInterface = windowManager.QueryInterface(Components.interfaces.nsIWindowMediator);
- var topWindow = windowManagerInterface.getMostRecentWindow(inType);
-
- if (topWindow)
- topWindow.focus();
- else if (features)
- window.open(uri, "_blank", features);
- else
- window.open(uri, "_blank", "chrome,extrachrome,menubar,resizable,scrollbars,status,toolbar");
- }
-
- function toOpenDialogByTypeAndUrl(inType, relatedUrl, windowUri, features, extraArgument)
- {
- var windowManager = Components.classes['@mozilla.org/appshell/window-mediator;1'].getService();
- var windowManagerInterface = windowManager.QueryInterface(Components.interfaces.nsIWindowMediator);
- var windows = windowManagerInterface.getEnumerator(inType);
-
- // Check for windows matching the url
- while (windows.hasMoreElements()) {
- var currentWindow = windows.getNext();
- if (currentWindow.document.documentElement.getAttribute("relatedUrl") == relatedUrl) {
- currentWindow.focus();
- return;
- }
- }
-
- // We didn't find a matching window, so open a new one.
- if (features)
- window.openDialog(windowUri, "_blank", features, extraArgument);
- else
- window.openDialog(windowUri, "_blank", "chrome,extrachrome,menubar,resizable,scrollbars,status,toolbar", extraArgument);
- }
-
- function OpenBrowserWindow()
- {
- var charsetArg = new String();
- var handler = Components.classes["@mozilla.org/browser/clh;1"]
- .getService(Components.interfaces.nsIBrowserHandler);
- var defaultArgs = handler.defaultArgs;
- var wintype = document.documentElement.getAttribute('windowtype');
-
- // if and only if the current window is a browser window and it has a document with a character
- // set, then extract the current charset menu setting from the current document and use it to
- // initialize the new browser window...
- var win;
- if (window && (wintype == "navigator:browser") && window.content && window.content.document)
- {
- var DocCharset = window.content.document.characterSet;
- charsetArg = "charset="+DocCharset;
-
- //we should "inherit" the charset menu setting in a new window
- win = window.openDialog("chrome://browser/content/", "_blank", "chrome,all,dialog=no", defaultArgs, charsetArg);
- }
- else // forget about the charset information.
- {
- win = window.openDialog("chrome://browser/content/", "_blank", "chrome,all,dialog=no", defaultArgs);
- }
-
- return win;
- }
-
- function BrowserCustomizeToolbar()
- {
- // Disable the toolbar context menu items
- var menubar = document.getElementById("main-menubar");
- for (var i = 0; i < menubar.childNodes.length; ++i)
- menubar.childNodes[i].setAttribute("disabled", true);
-
- var cmd = document.getElementById("cmd_CustomizeToolbars");
- cmd.setAttribute("disabled", "true");
-
- var splitter = document.getElementById("urlbar-search-splitter");
- if (splitter)
- splitter.parentNode.removeChild(splitter);
-
- var customizeURL = "chrome://global/content/customizeToolbar.xul";
- //@line 3254 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
- window.openDialog(customizeURL,
- "CustomizeToolbar",
- "chrome,all,dependent",
- getNavToolbox());
- //@line 3259 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
- }
-
- function BrowserToolboxCustomizeDone(aToolboxChanged)
- {
- //@line 3267 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
-
- // Update global UI elements that may have been added or removed
- if (aToolboxChanged) {
- gURLBar = document.getElementById("urlbar");
- gProxyFavIcon = document.getElementById("page-proxy-favicon");
- gHomeButton.updateTooltip();
- gIdentityHandler._cacheElements();
- window.XULBrowserWindow.init();
-
- var backForwardDropmarker = document.getElementById("back-forward-dropmarker");
- if (backForwardDropmarker)
- backForwardDropmarker.disabled =
- document.getElementById('Browser:Back').hasAttribute('disabled') &&
- document.getElementById('Browser:Forward').hasAttribute('disabled');
-
- // support downgrading to Firefox 2.0
- var navBar = document.getElementById("nav-bar");
- navBar.setAttribute("currentset",
- navBar.getAttribute("currentset")
- .replace("unified-back-forward-button",
- "unified-back-forward-button,back-button,forward-button"));
- document.persist(navBar.id, "currentset");
-
- //@line 3291 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
- updateEditUIVisibility();
- //@line 3293 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
- }
-
- UpdateUrlbarSearchSplitterState();
-
- gHomeButton.updatePersonalToolbarStyle();
-
- // Update the urlbar
- if (gURLBar) {
- URLBarSetURI();
- XULBrowserWindow.asyncUpdateUI();
- PlacesStarButton.updateState();
- }
-
- // Re-enable parts of the UI we disabled during the dialog
- var menubar = document.getElementById("main-menubar");
- for (var i = 0; i < menubar.childNodes.length; ++i)
- menubar.childNodes[i].setAttribute("disabled", false);
- var cmd = document.getElementById("cmd_CustomizeToolbars");
- cmd.removeAttribute("disabled");
-
- // XXXmano bug 287105: wallpaper to bug 309953,
- // the reload button isn't in sync with the reload command.
- var reloadButton = document.getElementById("reload-button");
- if (reloadButton) {
- reloadButton.disabled =
- document.getElementById("Browser:Reload").getAttribute("disabled") == "true";
- }
-
- //@line 3326 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
-
- initBookmarksToolbar();
-
- //@line 3330 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
- // XXX Shouldn't have to do this, but I do
- window.focus();
- //@line 3333 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
- }
-
- function BrowserToolboxCustomizeChange() {
- gHomeButton.updatePersonalToolbarStyle();
- }
-
- /**
- * Update the global flag that tracks whether or not any edit UI (the Edit menu,
- * edit-related items in the context menu, and edit-related toolbar buttons
- * is visible, then update the edit commands' enabled state accordingly. We use
- * this flag to skip updating the edit commands on focus or selection changes
- * when no UI is visible to improve performance (including pageload performance,
- * since focus changes when you load a new page).
- *
- * If UI is visible, we use goUpdateGlobalEditMenuItems to set the commands'
- * enabled state so the UI will reflect it appropriately.
- *
- * If the UI isn't visible, we enable all edit commands so keyboard shortcuts
- * still work and just lazily disable them as needed when the user presses a
- * shortcut.
- *
- * This doesn't work on Mac, since Mac menus flash when users press their
- * keyboard shortcuts, so edit UI is essentially always visible on the Mac,
- * and we need to always update the edit commands. Thus on Mac this function
- * is a no op.
- */
- function updateEditUIVisibility()
- {
- //@line 3362 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
- let editMenuPopupState = document.getElementById("menu_EditPopup").state;
- let contextMenuPopupState = document.getElementById("contentAreaContextMenu").state;
- let placesContextMenuPopupState = document.getElementById("placesContext").state;
-
- // The UI is visible if the Edit menu is opening or open, if the context menu
- // is open, or if the toolbar has been customized to include the Cut, Copy,
- // or Paste toolbar buttons.
- gEditUIVisible = editMenuPopupState == "showing" ||
- editMenuPopupState == "open" ||
- contextMenuPopupState == "showing" ||
- contextMenuPopupState == "open" ||
- placesContextMenuPopupState == "showing" ||
- placesContextMenuPopupState == "open" ||
- document.getElementById("cut-button") ||
- document.getElementById("copy-button") ||
- document.getElementById("paste-button") ? true : false;
-
- // If UI is visible, update the edit commands' enabled state to reflect
- // whether or not they are actually enabled for the current focus/selection.
- if (gEditUIVisible)
- goUpdateGlobalEditMenuItems();
-
- // Otherwise, enable all commands, so that keyboard shortcuts still work,
- // then lazily determine their actual enabled state when the user presses
- // a keyboard shortcut.
- else {
- goSetCommandEnabled("cmd_undo", true);
- goSetCommandEnabled("cmd_redo", true);
- goSetCommandEnabled("cmd_cut", true);
- goSetCommandEnabled("cmd_copy", true);
- goSetCommandEnabled("cmd_paste", true);
- goSetCommandEnabled("cmd_selectAll", true);
- goSetCommandEnabled("cmd_delete", true);
- goSetCommandEnabled("cmd_switchTextDirection", true);
- }
- //@line 3398 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
- }
-
- var FullScreen =
- {
- _XULNS: "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul",
- toggle: function()
- {
- // show/hide all menubars, toolbars, and statusbars (except the full screen toolbar)
- this.showXULChrome("toolbar", window.fullScreen);
- this.showXULChrome("statusbar", window.fullScreen);
- document.getElementById("fullScreenItem").setAttribute("checked", !window.fullScreen);
-
- var fullScrToggler = document.getElementById("fullscr-toggler");
- if (!window.fullScreen) {
- // Add a tiny toolbar to receive mouseover and dragenter events, and provide affordance.
- // This will help simulate the "collapse" metaphor while also requiring less code and
- // events than raw listening of mouse coords.
- if (!fullScrToggler) {
- fullScrToggler = document.createElement("toolbar");
- fullScrToggler.id = "fullscr-toggler";
- fullScrToggler.setAttribute("customizable", "false");
- fullScrToggler.setAttribute("moz-collapsed", "true");
- var navBar = document.getElementById("nav-bar");
- navBar.parentNode.insertBefore(fullScrToggler, navBar);
- }
- fullScrToggler.addEventListener("mouseover", this._expandCallback, false);
- fullScrToggler.addEventListener("dragenter", this._expandCallback, false);
-
- if (gPrefService.getBoolPref("browser.fullscreen.autohide"))
- gBrowser.mPanelContainer.addEventListener("mousemove",
- this._collapseCallback, false);
-
- document.addEventListener("keypress", this._keyToggleCallback, false);
- document.addEventListener("popupshown", this._setPopupOpen, false);
- document.addEventListener("popuphidden", this._setPopupOpen, false);
- this._shouldAnimate = true;
- this.mouseoverToggle(false);
-
- // Autohide prefs
- gPrefService.addObserver("browser.fullscreen", this, false);
- }
- else {
- document.removeEventListener("keypress", this._keyToggleCallback, false);
- document.removeEventListener("popupshown", this._setPopupOpen, false);
- document.removeEventListener("popuphidden", this._setPopupOpen, false);
- gPrefService.removeObserver("browser.fullscreen", this);
-
- if (fullScrToggler) {
- fullScrToggler.removeEventListener("mouseover", this._expandCallback, false);
- fullScrToggler.removeEventListener("dragenter", this._expandCallback, false);
- }
-
- // The user may quit fullscreen during an animation
- clearInterval(this._animationInterval);
- clearTimeout(this._animationTimeout);
- getNavToolbox().style.marginTop = "0px";
- if (this._isChromeCollapsed)
- this.mouseoverToggle(true);
- this._isAnimating = false;
- // This is needed if they use the context menu to quit fullscreen
- this._isPopupOpen = false;
-
- gBrowser.mPanelContainer.removeEventListener("mousemove",
- this._collapseCallback, false);
- }
- },
-
- observe: function(aSubject, aTopic, aData)
- {
- if (aData == "browser.fullscreen.autohide") {
- if (gPrefService.getBoolPref("browser.fullscreen.autohide")) {
- gBrowser.mPanelContainer.addEventListener("mousemove",
- this._collapseCallback, false);
- }
- else {
- gBrowser.mPanelContainer.removeEventListener("mousemove",
- this._collapseCallback, false);
- }
- }
- },
-
- // Event callbacks
- _expandCallback: function()
- {
- FullScreen.mouseoverToggle(true);
- },
- _collapseCallback: function()
- {
- FullScreen.mouseoverToggle(false);
- },
- _keyToggleCallback: function(aEvent)
- {
- // if we can use the keyboard (eg Ctrl+L or Ctrl+E) to open the toolbars, we
- // should provide a way to collapse them too.
- if (aEvent.keyCode == aEvent.DOM_VK_ESCAPE) {
- FullScreen._shouldAnimate = false;
- FullScreen.mouseoverToggle(false, true);
- }
- // F6 is another shortcut to the address bar, but its not covered in OpenLocation()
- else if (aEvent.keyCode == aEvent.DOM_VK_F6)
- FullScreen.mouseoverToggle(true);
- },
-
- // Checks whether we are allowed to collapse the chrome
- _isPopupOpen: false,
- _isChromeCollapsed: false,
- _safeToCollapse: function(forceHide)
- {
- if (!gPrefService.getBoolPref("browser.fullscreen.autohide"))
- return false;
-
- // a popup menu is open in chrome: don't collapse chrome
- if (!forceHide && this._isPopupOpen)
- return false;
-
- // a textbox in chrome is focused (location bar anyone?): don't collapse chrome
- if (document.commandDispatcher.focusedElement &&
- document.commandDispatcher.focusedElement.ownerDocument == document &&
- document.commandDispatcher.focusedElement.localName == "input") {
- if (forceHide)
- // hidden textboxes that still have focus are bad bad bad
- document.commandDispatcher.focusedElement.blur();
- else
- return false;
- }
- return true;
- },
-
- _setPopupOpen: function(aEvent)
- {
- // Popups should only veto chrome collapsing if they were opened when the chrome was not collapsed.
- // Otherwise, they would not affect chrome and the user would expect the chrome to go away.
- // e.g. we wouldn't want the autoscroll icon firing this event, so when the user
- // toggles chrome when moving mouse to the top, it doesn't go away again.
- if (aEvent.type == "popupshown" && !FullScreen._isChromeCollapsed &&
- aEvent.target.localName != "tooltip" && aEvent.target.localName != "window")
- FullScreen._isPopupOpen = true;
- else if (aEvent.type == "popuphidden" && aEvent.target.localName != "tooltip" &&
- aEvent.target.localName != "window")
- FullScreen._isPopupOpen = false;
- },
-
- // Autohide helpers for the context menu item
- getAutohide: function(aItem)
- {
- aItem.setAttribute("checked", gPrefService.getBoolPref("browser.fullscreen.autohide"));
- },
- setAutohide: function()
- {
- gPrefService.setBoolPref("browser.fullscreen.autohide", !gPrefService.getBoolPref("browser.fullscreen.autohide"));
- },
-
- // Animate the toolbars disappearing
- _shouldAnimate: true,
- _isAnimating: false,
- _animationTimeout: null,
- _animationInterval: null,
- _animateUp: function()
- {
- // check again, the user may have done something before the animation was due to start
- if (!window.fullScreen || !FullScreen._safeToCollapse(false)) {
- FullScreen._isAnimating = false;
- FullScreen._shouldAnimate = true;
- return;
- }
-
- var navToolbox = getNavToolbox();
- var animateFrameAmount = 2;
- function animateUpFrame() {
- animateFrameAmount *= 2;
- if (animateFrameAmount >=
- (navToolbox.boxObject.height + gBrowser.mStrip.boxObject.height)) {
- // We've animated enough
- clearInterval(FullScreen._animationInterval);
- navToolbox.style.marginTop = "0px";
- FullScreen._isAnimating = false;
- FullScreen._shouldAnimate = false; // Just to make sure
- FullScreen.mouseoverToggle(false);
- return;
- }
- navToolbox.style.marginTop = (animateFrameAmount * -1) + "px";
- }
-
- FullScreen._animationInterval = setInterval(animateUpFrame, 70);
- },
-
- mouseoverToggle: function(aShow, forceHide)
- {
- // Don't do anything if:
- // a) we're already in the state we want,
- // b) we're animating and will become collapsed soon, or
- // c) we can't collapse because it would be undesirable right now
- if (aShow != this._isChromeCollapsed || (!aShow && this._isAnimating) ||
- (!aShow && !this._safeToCollapse(forceHide)))
- return;
-
- // browser.fullscreen.animateUp
- // 0 - never animate up
- // 1 - animate only for first collapse after entering fullscreen (default for perf's sake)
- // 2 - animate every time it collapses
- if (gPrefService.getIntPref("browser.fullscreen.animateUp") == 0)
- this._shouldAnimate = false;
-
- if (!aShow && this._shouldAnimate) {
- this._isAnimating = true;
- this._shouldAnimate = false;
- this._animationTimeout = setTimeout(this._animateUp, 800);
- return;
- }
-
- // The chrome is collapsed so don't spam needless mousemove events
- if (aShow) {
- gBrowser.mPanelContainer.addEventListener("mousemove",
- this._collapseCallback, false);
- }
- else {
- gBrowser.mPanelContainer.removeEventListener("mousemove",
- this._collapseCallback, false);
- }
-
- gBrowser.mStrip.setAttribute("moz-collapsed", !aShow);
- var allFSToolbars = document.getElementsByTagNameNS(this._XULNS, "toolbar");
- for (var i = 0; i < allFSToolbars.length; i++) {
- if (allFSToolbars[i].getAttribute("fullscreentoolbar") == "true")
- allFSToolbars[i].setAttribute("moz-collapsed", !aShow);
- }
- document.getElementById("fullscr-toggler").setAttribute("moz-collapsed", aShow);
- this._isChromeCollapsed = !aShow;
- if (gPrefService.getIntPref("browser.fullscreen.animateUp") == 2)
- this._shouldAnimate = true;
- },
-
- showXULChrome: function(aTag, aShow)
- {
- var els = document.getElementsByTagNameNS(this._XULNS, aTag);
-
- for (var i = 0; i < els.length; ++i) {
- // XXX don't interfere with previously collapsed toolbars
- if (els[i].getAttribute("fullscreentoolbar") == "true") {
- if (!aShow) {
-
- var toolbarMode = els[i].getAttribute("mode");
- if (toolbarMode != "text") {
- els[i].setAttribute("saved-mode", toolbarMode);
- els[i].setAttribute("saved-iconsize",
- els[i].getAttribute("iconsize"));
- els[i].setAttribute("mode", "icons");
- els[i].setAttribute("iconsize", "small");
- }
-
- // Give the main nav bar the fullscreen context menu, otherwise remove it
- // to prevent breakage
- els[i].setAttribute("saved-context",
- els[i].getAttribute("context"));
- if (els[i].id == "nav-bar")
- els[i].setAttribute("context", "autohide-context");
- else
- els[i].removeAttribute("context");
-
- // Set the inFullscreen attribute to allow specific styling
- // in fullscreen mode
- els[i].setAttribute("inFullscreen", true);
- }
- else {
- function restoreAttr(attrName) {
- var savedAttr = "saved-" + attrName;
- if (els[i].hasAttribute(savedAttr)) {
- els[i].setAttribute(attrName, els[i].getAttribute(savedAttr));
- els[i].removeAttribute(savedAttr);
- }
- }
-
- restoreAttr("mode");
- restoreAttr("iconsize");
- restoreAttr("context");
-
- els[i].removeAttribute("inFullscreen");
- }
- } else {
- // use moz-collapsed so it doesn't persist hidden/collapsed,
- // so that new windows don't have missing toolbars
- if (aShow)
- els[i].removeAttribute("moz-collapsed");
- else
- els[i].setAttribute("moz-collapsed", "true");
- }
- }
-
- var toolbox = getNavToolbox();
- if (aShow)
- toolbox.removeAttribute("inFullscreen");
- else
- toolbox.setAttribute("inFullscreen", true);
-
- //@line 3693 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
- var controls = document.getElementsByAttribute("fullscreencontrol", "true");
- for (var i = 0; i < controls.length; ++i)
- controls[i].hidden = aShow;
- //@line 3697 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
- }
- };
-
- /**
- * Returns true if |aMimeType| is text-based, false otherwise.
- *
- * @param aMimeType
- * The MIME type to check.
- *
- * If adding types to this function, please also check the similar
- * function in findbar.xml
- */
- function mimeTypeIsTextBased(aMimeType)
- {
- return /^text\/|\+xml$/.test(aMimeType) ||
- aMimeType == "application/x-javascript" ||
- aMimeType == "application/javascript" ||
- aMimeType == "application/xml" ||
- aMimeType == "mozilla.application/cached-xul";
- }
-
- function nsBrowserStatusHandler()
- {
- this.init();
- }
-
- nsBrowserStatusHandler.prototype =
- {
- // Stored Status, Link and Loading values
- status : "",
- defaultStatus : "",
- jsStatus : "",
- jsDefaultStatus : "",
- overLink : "",
- startTime : 0,
- statusText: "",
- lastURI: null,
-
- statusTimeoutInEffect : false,
-
- QueryInterface : function(aIID)
- {
- if (aIID.equals(Ci.nsIWebProgressListener) ||
- aIID.equals(Ci.nsIWebProgressListener2) ||
- aIID.equals(Ci.nsISupportsWeakReference) ||
- aIID.equals(Ci.nsIXULBrowserWindow) ||
- aIID.equals(Ci.nsISupports))
- return this;
- throw Cr.NS_NOINTERFACE;
- },
-
- init : function()
- {
- this.throbberElement = document.getElementById("navigator-throbber");
- this.statusMeter = document.getElementById("statusbar-icon");
- this.stopCommand = document.getElementById("Browser:Stop");
- this.reloadCommand = document.getElementById("Browser:Reload");
- this.reloadSkipCacheCommand = document.getElementById("Browser:ReloadSkipCache");
- this.statusTextField = document.getElementById("statusbar-display");
- this.securityButton = document.getElementById("security-button");
- this.urlBar = document.getElementById("urlbar");
- this.isImage = document.getElementById("isImage");
-
- // Initialize the security button's state and tooltip text. Remember to reset
- // _hostChanged, otherwise onSecurityChange will short circuit.
- var securityUI = getBrowser().securityUI;
- this._hostChanged = true;
- this.onSecurityChange(null, null, securityUI.state);
- },
-
- destroy : function()
- {
- // XXXjag to avoid leaks :-/, see bug 60729
- this.throbberElement = null;
- this.statusMeter = null;
- this.stopCommand = null;
- this.reloadCommand = null;
- this.reloadSkipCacheCommand = null;
- this.statusTextField = null;
- this.securityButton = null;
- this.urlBar = null;
- this.statusText = null;
- this.lastURI = null;
- },
-
- setJSStatus : function(status)
- {
- this.jsStatus = status;
- this.updateStatusField();
- },
-
- setJSDefaultStatus : function(status)
- {
- this.jsDefaultStatus = status;
- this.updateStatusField();
- },
-
- setDefaultStatus : function(status)
- {
- this.defaultStatus = status;
- this.updateStatusField();
- },
-
- setOverLink : function(link, b)
- {
- // Encode bidirectional formatting characters.
- // (RFC 3987 sections 3.2 and 4.1 paragraph 6)
- this.overLink = link.replace(/[\u200e\u200f\u202a\u202b\u202c\u202d\u202e]/g,
- encodeURIComponent);
- this.updateStatusField();
- },
-
- updateStatusField : function()
- {
- var text = this.overLink || this.status || this.jsStatus || this.jsDefaultStatus || this.defaultStatus;
-
- // check the current value so we don't trigger an attribute change
- // and cause needless (slow!) UI updates
- if (this.statusText != text) {
- this.statusTextField.label = text;
- this.statusText = text;
- }
- },
-
- onLinkIconAvailable : function(aBrowser)
- {
- if (gProxyFavIcon && gBrowser.mCurrentBrowser == aBrowser &&
- gBrowser.userTypedValue === null)
- PageProxySetIcon(aBrowser.mIconURL); // update the favicon in the URL bar
- },
-
- onProgressChange : function (aWebProgress, aRequest,
- aCurSelfProgress, aMaxSelfProgress,
- aCurTotalProgress, aMaxTotalProgress)
- {
- if (aMaxTotalProgress > 0) {
- // This is highly optimized. Don't touch this code unless
- // you are intimately familiar with the cost of setting
- // attrs on XUL elements. -- hyatt
- var percentage = (aCurTotalProgress * 100) / aMaxTotalProgress;
- this.statusMeter.value = percentage;
- }
- },
-
- onProgressChange64 : function (aWebProgress, aRequest,
- aCurSelfProgress, aMaxSelfProgress,
- aCurTotalProgress, aMaxTotalProgress)
- {
- return this.onProgressChange(aWebProgress, aRequest,
- aCurSelfProgress, aMaxSelfProgress, aCurTotalProgress,
- aMaxTotalProgress);
- },
-
- onStateChange : function(aWebProgress, aRequest, aStateFlags, aStatus)
- {
- const nsIWebProgressListener = Components.interfaces.nsIWebProgressListener;
- const nsIChannel = Components.interfaces.nsIChannel;
- if (aStateFlags & nsIWebProgressListener.STATE_START) {
- // This (thanks to the filter) is a network start or the first
- // stray request (the first request outside of the document load),
- // initialize the throbber and his friends.
-
- // Call start document load listeners (only if this is a network load)
- if (aStateFlags & nsIWebProgressListener.STATE_IS_NETWORK &&
- aRequest && aWebProgress.DOMWindow == content)
- this.startDocumentLoad(aRequest);
-
- if (this.throbberElement) {
- // Turn the throbber on.
- this.throbberElement.setAttribute("busy", "true");
- }
-
- // Turn the status meter on.
- this.statusMeter.value = 0; // be sure to clear the progress bar
- if (gProgressCollapseTimer) {
- window.clearTimeout(gProgressCollapseTimer);
- gProgressCollapseTimer = null;
- }
- else
- this.statusMeter.parentNode.collapsed = false;
-
- // XXX: This needs to be based on window activity...
- this.stopCommand.removeAttribute("disabled");
- }
- else if (aStateFlags & nsIWebProgressListener.STATE_STOP) {
- if (aStateFlags & nsIWebProgressListener.STATE_IS_NETWORK) {
- if (aWebProgress.DOMWindow == content) {
- if (aRequest)
- this.endDocumentLoad(aRequest, aStatus);
- var browser = gBrowser.mCurrentBrowser;
- if (!gBrowser.mTabbedMode && !browser.mIconURL)
- gBrowser.useDefaultIcon(gBrowser.mCurrentTab);
-
- if (Components.isSuccessCode(aStatus) &&
- content.document.documentElement.getAttribute("manifest")) {
- OfflineApps.offlineAppRequested(content);
- }
- }
- }
-
- // This (thanks to the filter) is a network stop or the last
- // request stop outside of loading the document, stop throbbers
- // and progress bars and such
- if (aRequest) {
- var msg = "";
- // Get the URI either from a channel or a pseudo-object
- if (aRequest instanceof nsIChannel || "URI" in aRequest) {
- var location = aRequest.URI;
-
- // For keyword URIs clear the user typed value since they will be changed into real URIs
- if (location.scheme == "keyword" && aWebProgress.DOMWindow == content)
- getBrowser().userTypedValue = null;
-
- if (location.spec != "about:blank") {
- const kErrorBindingAborted = 0x804B0002;
- const kErrorNetTimeout = 0x804B000E;
- switch (aStatus) {
- case kErrorBindingAborted:
- msg = gNavigatorBundle.getString("nv_stopped");
- break;
- case kErrorNetTimeout:
- msg = gNavigatorBundle.getString("nv_timeout");
- break;
- }
- }
- }
- // If msg is false then we did not have an error (channel may have
- // been null, in the case of a stray image load).
- if (!msg && (!location || location.spec != "about:blank")) {
- msg = gNavigatorBundle.getString("nv_done");
- }
- this.status = "";
- this.setDefaultStatus(msg);
-
- // Disable menu entries for images, enable otherwise
- if (content.document && mimeTypeIsTextBased(content.document.contentType))
- this.isImage.removeAttribute('disabled');
- else
- this.isImage.setAttribute('disabled', 'true');
- }
-
- // Turn the progress meter and throbber off.
- gProgressCollapseTimer = window.setTimeout(
- function() {
- gProgressMeterPanel.collapsed = true;
- gProgressCollapseTimer = null;
- }, 100);
-
- if (this.throbberElement)
- this.throbberElement.removeAttribute("busy");
-
- this.stopCommand.setAttribute("disabled", "true");
- }
- },
-
- onLocationChange : function(aWebProgress, aRequest, aLocationURI)
- {
- var location = aLocationURI ? aLocationURI.spec : "";
- this._hostChanged = true;
-
- if (document.tooltipNode) {
- // Optimise for the common case
- if (aWebProgress.DOMWindow == content) {
- document.getElementById("aHTMLTooltip").hidePopup();
- document.tooltipNode = null;
- }
- else {
- for (var tooltipWindow =
- document.tooltipNode.ownerDocument.defaultView;
- tooltipWindow != tooltipWindow.parent;
- tooltipWindow = tooltipWindow.parent) {
- if (tooltipWindow == aWebProgress.DOMWindow) {
- document.getElementById("aHTMLTooltip").hidePopup();
- document.tooltipNode = null;
- break;
- }
- }
- }
- }
-
- // This code here does not compare uris exactly when determining
- // whether or not the message should be hidden since the message
- // may be prematurely hidden when an install is invoked by a click
- // on a link that looks like this:
- //
- // <a href="#" onclick="return install();">Install Foo</a>
- //
- // - which fires a onLocationChange message to uri + '#'...
- var selectedBrowser = getBrowser().selectedBrowser;
- if (selectedBrowser.lastURI) {
- var oldSpec = selectedBrowser.lastURI.spec;
- var oldIndexOfHash = oldSpec.indexOf("#");
- if (oldIndexOfHash != -1)
- oldSpec = oldSpec.substr(0, oldIndexOfHash);
- var newSpec = location;
- var newIndexOfHash = newSpec.indexOf("#");
- if (newIndexOfHash != -1)
- newSpec = newSpec.substr(0, newSpec.indexOf("#"));
- if (newSpec != oldSpec) {
- // Remove all the notifications, except for those which want to
- // persist across the first location change.
- var nBox = gBrowser.getNotificationBox(selectedBrowser);
- nBox.removeTransientNotifications();
- }
- }
- selectedBrowser.lastURI = aLocationURI;
-
- // Disable menu entries for images, enable otherwise
- if (content.document && mimeTypeIsTextBased(content.document.contentType))
- this.isImage.removeAttribute('disabled');
- else
- this.isImage.setAttribute('disabled', 'true');
-
- this.setOverLink("", null);
-
- // We should probably not do this if the value has changed since the user
- // searched
- // Update urlbar only if a new page was loaded on the primary content area
- // Do not update urlbar if there was a subframe navigation
-
- var browser = getBrowser().selectedBrowser;
- if (aWebProgress.DOMWindow == content) {
-
- if ((location == "about:blank" && !content.opener) ||
- location == "") { // Second condition is for new tabs, otherwise
- // reload function is enabled until tab is refreshed.
- this.reloadCommand.setAttribute("disabled", "true");
- this.reloadSkipCacheCommand.setAttribute("disabled", "true");
- } else {
- this.reloadCommand.removeAttribute("disabled");
- this.reloadSkipCacheCommand.removeAttribute("disabled");
- }
-
- if (!gBrowser.mTabbedMode && aWebProgress.isLoadingDocument)
- gBrowser.setIcon(gBrowser.mCurrentTab, null);
-
- if (gURLBar) {
- URLBarSetURI(aLocationURI);
-
- // Update starring UI
- PlacesStarButton.updateState();
- }
- }
- UpdateBackForwardCommands(gBrowser.webNavigation);
-
- if (gFindBar.findMode != gFindBar.FIND_NORMAL) {
- // Close the Find toolbar if we're in old-style TAF mode
- gFindBar.close();
- }
-
- // XXXmano new-findbar, do something useful once it lands.
- // Of course, this is especially wrong with bfcache on...
-
- // fix bug 253793 - turn off highlight when page changes
- gFindBar.getElement("highlight").checked = false;
-
- // See bug 358202, when tabs are switched during a drag operation,
- // timers don't fire on windows (bug 203573)
- if (aRequest) {
- var self = this;
- setTimeout(function() { self.asyncUpdateUI(); }, 0);
- }
- else
- this.asyncUpdateUI();
-
- // Catch exceptions until bug 376222 gets fixed so we don't hork
- // other progress listeners if this call throws an exception.
- try {
- FullZoom.onLocationChange(aLocationURI);
- }
- catch(ex) {
- Components.utils.reportError(ex);
- }
- },
-
- asyncUpdateUI : function () {
- FeedHandler.updateFeeds();
- BrowserSearch.updateSearchButton();
- },
-
- onStatusChange : function(aWebProgress, aRequest, aStatus, aMessage)
- {
- this.status = aMessage;
- this.updateStatusField();
- },
-
- onRefreshAttempted : function(aWebProgress, aURI, aDelay, aSameURI)
- {
- if (gPrefService.getBoolPref("accessibility.blockautorefresh")) {
- var brandBundle = document.getElementById("bundle_brand");
- var brandShortName = brandBundle.getString("brandShortName");
- var refreshButtonText =
- gNavigatorBundle.getString("refreshBlocked.goButton");
- var refreshButtonAccesskey =
- gNavigatorBundle.getString("refreshBlocked.goButton.accesskey");
- var message;
- if (aSameURI)
- message = gNavigatorBundle.getFormattedString(
- "refreshBlocked.refreshLabel", [brandShortName]);
- else
- message = gNavigatorBundle.getFormattedString(
- "refreshBlocked.redirectLabel", [brandShortName]);
- var topBrowser = getBrowserFromContentWindow(aWebProgress.DOMWindow.top);
- var docShell = aWebProgress.DOMWindow
- .QueryInterface(Ci.nsIInterfaceRequestor)
- .getInterface(Ci.nsIWebNavigation)
- .QueryInterface(Ci.nsIDocShell);
- var notificationBox = gBrowser.getNotificationBox(topBrowser);
- var notification = notificationBox.getNotificationWithValue(
- "refresh-blocked");
- if (notification) {
- notification.label = message;
- notification.refreshURI = aURI;
- notification.delay = aDelay;
- notification.docShell = docShell;
- }
- else {
- var buttons = [{
- label: refreshButtonText,
- accessKey: refreshButtonAccesskey,
- callback: function(aNotification, aButton) {
- var refreshURI = aNotification.docShell
- .QueryInterface(Ci.nsIRefreshURI);
- refreshURI.forceRefreshURI(aNotification.refreshURI,
- aNotification.delay, true);
- }
- }];
- const priority = notificationBox.PRIORITY_INFO_MEDIUM;
- notification = notificationBox.appendNotification(
- message,
- "refresh-blocked",
- "chrome://browser/skin/Info.png",
- priority,
- buttons);
- notification.refreshURI = aURI;
- notification.delay = aDelay;
- notification.docShell = docShell;
- }
- return false;
- }
- return true;
- },
-
- // Properties used to cache security state used to update the UI
- _state: null,
- _host: undefined,
- _tooltipText: null,
- _hostChanged: false, // onLocationChange will flip this bit
-
- onSecurityChange : function browser_onSecChange(aWebProgress,
- aRequest, aState)
- {
- // Don't need to do anything if the data we use to update the UI hasn't
- // changed
- if (this._state == aState &&
- this._tooltipText == gBrowser.securityUI.tooltipText &&
- !this._hostChanged) {
- //@line 4165 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
- return;
- }
- this._state = aState;
-
- try {
- this._host = gBrowser.contentWindow.location.host;
- } catch(ex) {
- this._host = null;
- }
-
- this._hostChanged = false;
- this._tooltipText = gBrowser.securityUI.tooltipText
-
- // aState is defined as a bitmask that may be extended in the future.
- // We filter out any unknown bits before testing for known values.
- const wpl = Components.interfaces.nsIWebProgressListener;
- const wpl_security_bits = wpl.STATE_IS_SECURE |
- wpl.STATE_IS_BROKEN |
- wpl.STATE_IS_INSECURE |
- wpl.STATE_SECURE_HIGH |
- wpl.STATE_SECURE_MED |
- wpl.STATE_SECURE_LOW;
- var level = null;
- var setHost = false;
-
- switch (this._state & wpl_security_bits) {
- case wpl.STATE_IS_SECURE | wpl.STATE_SECURE_HIGH:
- level = "high";
- setHost = true;
- break;
- case wpl.STATE_IS_SECURE | wpl.STATE_SECURE_MED:
- case wpl.STATE_IS_SECURE | wpl.STATE_SECURE_LOW:
- level = "low";
- setHost = true;
- break;
- case wpl.STATE_IS_BROKEN:
- level = "broken";
- break;
- }
-
- if (level) {
- this.securityButton.setAttribute("level", level);
- if (this.urlBar)
- this.urlBar.setAttribute("level", level);
- } else {
- this.securityButton.removeAttribute("level");
- if (this.urlBar)
- this.urlBar.removeAttribute("level");
- }
-
- if (setHost && this._host)
- this.securityButton.setAttribute("label", this._host);
- else
- this.securityButton.removeAttribute("label");
-
- this.securityButton.setAttribute("tooltiptext", this._tooltipText);
-
- // Don't pass in the actual location object, since it can cause us to
- // hold on to the window object too long. Just pass in the fields we
- // care about. (bug 424829)
- var location = gBrowser.contentWindow.location;
- var locationObj = {};
- try {
- locationObj.host = location.host;
- locationObj.hostname = location.hostname;
- locationObj.port = location.port;
- } catch (ex) {
- // Can sometimes throw if the URL being visited has no host/hostname,
- // e.g. about:blank. The _state for these pages means we won't need these
- // properties anyways, though.
- }
- getIdentityHandler().checkIdentity(this._state, locationObj);
- },
-
- // simulate all change notifications after switching tabs
- onUpdateCurrentBrowser : function(aStateFlags, aStatus, aMessage, aTotalProgress)
- {
- var nsIWebProgressListener = Components.interfaces.nsIWebProgressListener;
- var loadingDone = aStateFlags & nsIWebProgressListener.STATE_STOP;
- // use a pseudo-object instead of a (potentially non-existing) channel for getting
- // a correct error message - and make sure that the UI is always either in
- // loading (STATE_START) or done (STATE_STOP) mode
- this.onStateChange(
- gBrowser.webProgress,
- { URI: gBrowser.currentURI },
- loadingDone ? nsIWebProgressListener.STATE_STOP : nsIWebProgressListener.STATE_START,
- aStatus
- );
- // status message and progress value are undefined if we're done with loading
- if (loadingDone)
- return;
- this.onStatusChange(gBrowser.webProgress, null, 0, aMessage);
- this.onProgressChange(gBrowser.webProgress, 0, 0, aTotalProgress, 1);
- },
-
- startDocumentLoad : function(aRequest)
- {
- // clear out feed data
- gBrowser.mCurrentBrowser.feeds = null;
-
- // clear out search-engine data
- gBrowser.mCurrentBrowser.engines = null;
-
- const nsIChannel = Components.interfaces.nsIChannel;
- var urlStr = aRequest.QueryInterface(nsIChannel).URI.spec;
- var observerService = Components.classes["@mozilla.org/observer-service;1"]
- .getService(Components.interfaces.nsIObserverService);
- try {
- observerService.notifyObservers(content, "StartDocumentLoad", urlStr);
- } catch (e) {
- }
- },
-
- endDocumentLoad : function(aRequest, aStatus)
- {
- const nsIChannel = Components.interfaces.nsIChannel;
- var urlStr = aRequest.QueryInterface(nsIChannel).originalURI.spec;
-
- var observerService = Components.classes["@mozilla.org/observer-service;1"]
- .getService(Components.interfaces.nsIObserverService);
-
- var notification = Components.isSuccessCode(aStatus) ? "EndDocumentLoad" : "FailDocumentLoad";
- try {
- observerService.notifyObservers(content, notification, urlStr);
- } catch (e) {
- }
- }
- }
-
- function nsBrowserAccess()
- {
- }
-
- nsBrowserAccess.prototype =
- {
- QueryInterface : function(aIID)
- {
- if (aIID.equals(Ci.nsIBrowserDOMWindow) ||
- aIID.equals(Ci.nsISupports))
- return this;
- throw Components.results.NS_NOINTERFACE;
- },
-
- openURI : function(aURI, aOpener, aWhere, aContext)
- {
- var newWindow = null;
- var referrer = null;
- var isExternal = (aContext == Ci.nsIBrowserDOMWindow.OPEN_EXTERNAL);
-
- if (isExternal && aURI && aURI.schemeIs("chrome")) {
- dump("use -chrome command-line option to load external chrome urls\n");
- return null;
- }
-
- if (!gPrefService)
- gPrefService = Components.classes["@mozilla.org/preferences-service;1"]
- .getService(Components.interfaces.nsIPrefBranch2);
-
- var loadflags = isExternal ?
- Ci.nsIWebNavigation.LOAD_FLAGS_FROM_EXTERNAL :
- Ci.nsIWebNavigation.LOAD_FLAGS_NONE;
- var location;
- if (aWhere == Ci.nsIBrowserDOMWindow.OPEN_DEFAULTWINDOW) {
- switch (aContext) {
- case Ci.nsIBrowserDOMWindow.OPEN_EXTERNAL :
- aWhere = gPrefService.getIntPref("browser.link.open_external");
- break;
- default : // OPEN_NEW or an illegal value
- aWhere = gPrefService.getIntPref("browser.link.open_newwindow");
- }
- }
- switch(aWhere) {
- case Ci.nsIBrowserDOMWindow.OPEN_NEWWINDOW :
- // FIXME: Bug 408379. So how come this doesn't send the
- // referrer like the other loads do?
- var url = aURI ? aURI.spec : "about:blank";
- // Pass all params to openDialog to ensure that "url" isn't passed through
- // loadOneOrMoreURIs, which splits based on "|"
- newWindow = openDialog(getBrowserURL(), "_blank", "all,dialog=no", url, null, null, null);
- break;
- case Ci.nsIBrowserDOMWindow.OPEN_NEWTAB :
- var win = this._getMostRecentBrowserWindow();
- if (!win) {
- // we couldn't find a suitable window, a new one needs to be opened.
- return null;
- }
- var loadInBackground = gPrefService.getBoolPref("browser.tabs.loadDivertedInBackground");
- var newTab = win.gBrowser.loadOneTab("about:blank", null, null, null, loadInBackground, false);
- newWindow = win.gBrowser.getBrowserForTab(newTab).docShell
- .QueryInterface(Ci.nsIInterfaceRequestor)
- .getInterface(Ci.nsIDOMWindow);
- try {
- if (aURI) {
- if (aOpener) {
- location = aOpener.location;
- referrer =
- Components.classes["@mozilla.org/network/io-service;1"]
- .getService(Components.interfaces.nsIIOService)
- .newURI(location, null, null);
- }
- newWindow.QueryInterface(Ci.nsIInterfaceRequestor)
- .getInterface(Ci.nsIWebNavigation)
- .loadURI(aURI.spec, loadflags, referrer, null, null);
- }
- if (!loadInBackground && isExternal)
- newWindow.focus();
- } catch(e) {
- }
- break;
- default : // OPEN_CURRENTWINDOW or an illegal value
- try {
- if (aOpener) {
- newWindow = aOpener.top;
- if (aURI) {
- location = aOpener.location;
- referrer =
- Components.classes["@mozilla.org/network/io-service;1"]
- .getService(Components.interfaces.nsIIOService)
- .newURI(location, null, null);
-
- newWindow.QueryInterface(Ci.nsIInterfaceRequestor)
- .getInterface(nsIWebNavigation)
- .loadURI(aURI.spec, loadflags, referrer, null, null);
- }
- } else {
- newWindow = gBrowser.selectedBrowser.docShell
- .QueryInterface(Ci.nsIInterfaceRequestor)
- .getInterface(Ci.nsIDOMWindow);
- if (aURI) {
- gBrowser.loadURIWithFlags(aURI.spec, loadflags, null,
- null, null);
- }
- }
- if(!gPrefService.getBoolPref("browser.tabs.loadDivertedInBackground"))
- content.focus();
- } catch(e) {
- }
- }
- return newWindow;
- },
-
- //@line 4414 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
-
- // this returns the most recent non-popup browser window
- _getMostRecentBrowserWindow : function ()
- {
- if (!window.document.documentElement.getAttribute("chromehidden"))
- return window;
-
- var wm = Components.classes["@mozilla.org/appshell/window-mediator;1"]
- .getService(Components.interfaces.nsIWindowMediator);
-
- //@line 4425 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
- var win = wm.getMostRecentWindow("navigator:browser", true);
-
- // if we're lucky, this isn't a popup, and we can just return this
- if (win && win.document.documentElement.getAttribute("chromehidden")) {
- win = null;
- var windowList = wm.getEnumerator("navigator:browser", true);
- // this is oldest to newest, so this gets a bit ugly
- while (windowList.hasMoreElements()) {
- var nextWin = windowList.getNext();
- if (!nextWin.document.documentElement.getAttribute("chromehidden"))
- win = nextWin;
- }
- }
- //@line 4451 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
-
- return win;
- },
-
- isTabContentWindow : function(aWindow)
- {
- var browsers = gBrowser.browsers;
- for (var ctr = 0; ctr < browsers.length; ctr++)
- if (browsers.item(ctr).contentWindow == aWindow)
- return true;
- return false;
- }
- }
-
- function onViewToolbarsPopupShowing(aEvent)
- {
- var popup = aEvent.target;
- var i;
-
- // Empty the menu
- for (i = popup.childNodes.length-1; i >= 0; --i) {
- var deadItem = popup.childNodes[i];
- if (deadItem.hasAttribute("toolbarindex"))
- popup.removeChild(deadItem);
- }
-
- var firstMenuItem = popup.firstChild;
-
- var toolbox = getNavToolbox();
- for (i = 0; i < toolbox.childNodes.length; ++i) {
- var toolbar = toolbox.childNodes[i];
- var toolbarName = toolbar.getAttribute("toolbarname");
- var type = toolbar.getAttribute("type");
- if (toolbarName && type != "menubar") {
- var menuItem = document.createElement("menuitem");
- menuItem.setAttribute("toolbarindex", i);
- menuItem.setAttribute("type", "checkbox");
- menuItem.setAttribute("label", toolbarName);
- menuItem.setAttribute("accesskey", toolbar.getAttribute("accesskey"));
- menuItem.setAttribute("checked", toolbar.getAttribute("collapsed") != "true");
- popup.insertBefore(menuItem, firstMenuItem);
-
- menuItem.addEventListener("command", onViewToolbarCommand, false);
- }
- toolbar = toolbar.nextSibling;
- }
- }
-
- function onViewToolbarCommand(aEvent)
- {
- var toolbox = getNavToolbox();
- var index = aEvent.originalTarget.getAttribute("toolbarindex");
- var toolbar = toolbox.childNodes[index];
-
- toolbar.collapsed = aEvent.originalTarget.getAttribute("checked") != "true";
- document.persist(toolbar.id, "collapsed");
- }
-
- function displaySecurityInfo()
- {
- BrowserPageInfo(null, "securityTab");
- }
-
- /**
- * Opens or closes the sidebar identified by commandID.
- *
- * @param commandID a string identifying the sidebar to toggle; see the
- * note below. (Optional if a sidebar is already open.)
- * @param forceOpen boolean indicating whether the sidebar should be
- * opened regardless of it's current state (optional).
- * @note
- * We expect to find a xul:broadcaster element with the specified ID.
- * The following attributes on that element may be used and/or modified:
- * - id (required) the string to match commandID. The convention
- * is to use this naming scheme: 'view<sidebar-name>Sidebar'.
- * - sidebarurl (required) specifies the URL to load in this sidebar.
- * - sidebartitle or label (in that order) specify the title to
- * display on the sidebar.
- * - checked indicates whether the sidebar is currently displayed.
- * Note that toggleSidebar updates this attribute when
- * it changes the sidebar's visibility.
- * - group this attribute must be set to "sidebar".
- */
- function toggleSidebar(commandID, forceOpen) {
-
- var sidebarBox = document.getElementById("sidebar-box");
- if (!commandID)
- commandID = sidebarBox.getAttribute("sidebarcommand");
-
- var sidebarBroadcaster = document.getElementById(commandID);
- var sidebar = document.getElementById("sidebar"); // xul:browser
- var sidebarTitle = document.getElementById("sidebar-title");
- var sidebarSplitter = document.getElementById("sidebar-splitter");
-
- if (sidebarBroadcaster.getAttribute("checked") == "true") {
- if (!forceOpen) {
- sidebarBroadcaster.removeAttribute("checked");
- sidebarBox.setAttribute("sidebarcommand", "");
- sidebarTitle.value = "";
- sidebar.setAttribute("src", "about:blank");
- sidebarBox.hidden = true;
- sidebarSplitter.hidden = true;
- content.focus();
- } else {
- fireSidebarFocusedEvent();
- }
- return;
- }
-
- // now we need to show the specified sidebar
-
- // ..but first update the 'checked' state of all sidebar broadcasters
- var broadcasters = document.getElementsByAttribute("group", "sidebar");
- for (var i = 0; i < broadcasters.length; ++i) {
- // skip elements that observe sidebar broadcasters and random
- // other elements
- if (broadcasters[i].localName != "broadcaster")
- continue;
-
- if (broadcasters[i] != sidebarBroadcaster)
- broadcasters[i].removeAttribute("checked");
- else
- sidebarBroadcaster.setAttribute("checked", "true");
- }
-
- sidebarBox.hidden = false;
- sidebarSplitter.hidden = false;
-
- var url = sidebarBroadcaster.getAttribute("sidebarurl");
- var title = sidebarBroadcaster.getAttribute("sidebartitle");
- if (!title)
- title = sidebarBroadcaster.getAttribute("label");
- sidebar.setAttribute("src", url); // kick off async load
- sidebarBox.setAttribute("sidebarcommand", sidebarBroadcaster.id);
- sidebarTitle.value = title;
-
- // We set this attribute here in addition to setting it on the <browser>
- // element itself, because the code in BrowserShutdown persists this
- // attribute, not the "src" of the <browser id="sidebar">. The reason it
- // does that is that we want to delay sidebar load a bit when a browser
- // window opens. See delayedStartup().
- sidebarBox.setAttribute("src", url);
-
- if (sidebar.contentDocument.location.href != url)
- sidebar.addEventListener("load", sidebarOnLoad, true);
- else // older code handled this case, so we do it too
- fireSidebarFocusedEvent();
- }
-
- function sidebarOnLoad(event) {
- var sidebar = document.getElementById("sidebar");
- sidebar.removeEventListener("load", sidebarOnLoad, true);
- // We're handling the 'load' event before it bubbles up to the usual
- // (non-capturing) event handlers. Let it bubble up before firing the
- // SidebarFocused event.
- setTimeout(fireSidebarFocusedEvent, 0);
- }
-
- /**
- * Fire a "SidebarFocused" event on the sidebar's |window| to give the sidebar
- * a chance to adjust focus as needed. An additional event is needed, because
- * we don't want to focus the sidebar when it's opened on startup or in a new
- * window, only when the user opens the sidebar.
- */
- function fireSidebarFocusedEvent() {
- var sidebar = document.getElementById("sidebar");
- var event = document.createEvent("Events");
- event.initEvent("SidebarFocused", true, false);
- sidebar.contentWindow.dispatchEvent(event);
- }
-
- var gHomeButton = {
- prefDomain: "browser.startup.homepage",
- observe: function (aSubject, aTopic, aPrefName)
- {
- if (aTopic != "nsPref:changed" || aPrefName != this.prefDomain)
- return;
-
- this.updateTooltip();
- },
-
- updateTooltip: function (homeButton)
- {
- if (!homeButton)
- homeButton = document.getElementById("home-button");
- if (homeButton) {
- var homePage = this.getHomePage();
- homePage = homePage.replace(/\|/g,', ');
- homeButton.setAttribute("tooltiptext", homePage);
- }
- },
-
- getHomePage: function ()
- {
- var url;
- try {
- url = gPrefService.getComplexValue(this.prefDomain,
- Components.interfaces.nsIPrefLocalizedString).data;
- } catch (e) {
- }
-
- // use this if we can't find the pref
- if (!url) {
- var SBS = Cc["@mozilla.org/intl/stringbundle;1"].getService(Ci.nsIStringBundleService);
- var configBundle = SBS.createBundle("resource:/browserconfig.properties");
- url = configBundle.GetStringFromName(this.prefDomain);
- }
-
- return url;
- },
-
- updatePersonalToolbarStyle: function (homeButton)
- {
- if (!homeButton)
- homeButton = document.getElementById("home-button");
- if (homeButton)
- homeButton.className = homeButton.parentNode.id == "PersonalToolbar"
- || homeButton.parentNode.parentNode.id == "PersonalToolbar" ?
- homeButton.className.replace("toolbarbutton-1", "bookmark-item") :
- homeButton.className.replace("bookmark-item", "toolbarbutton-1");
- }
- };
-
- /**
- * Gets the selected text in the active browser. Leading and trailing
- * whitespace is removed, and consecutive whitespace is replaced by a single
- * space. A maximum of 150 characters will be returned, regardless of the value
- * of aCharLen.
- *
- * @param aCharLen
- * The maximum number of characters to return.
- */
- function getBrowserSelection(aCharLen) {
- // selections of more than 150 characters aren't useful
- const kMaxSelectionLen = 150;
- const charLen = Math.min(aCharLen || kMaxSelectionLen, kMaxSelectionLen);
-
- var focusedWindow = document.commandDispatcher.focusedWindow;
- var selection = focusedWindow.getSelection().toString();
-
- if (selection) {
- if (selection.length > charLen) {
- // only use the first charLen important chars. see bug 221361
- var pattern = new RegExp("^(?:\\s*.){0," + charLen + "}");
- pattern.test(selection);
- selection = RegExp.lastMatch;
- }
-
- selection = selection.replace(/^\s+/, "")
- .replace(/\s+$/, "")
- .replace(/\s+/g, " ");
-
- if (selection.length > charLen)
- selection = selection.substr(0, charLen);
- }
- return selection;
- }
-
- var gWebPanelURI;
- function openWebPanel(aTitle, aURI)
- {
- // Ensure that the web panels sidebar is open.
- toggleSidebar('viewWebPanelsSidebar', true);
-
- // Set the title of the panel.
- document.getElementById("sidebar-title").value = aTitle;
-
- // Tell the Web Panels sidebar to load the bookmark.
- var sidebar = document.getElementById("sidebar");
- if (sidebar.docShell && sidebar.contentDocument && sidebar.contentDocument.getElementById('web-panels-browser')) {
- sidebar.contentWindow.loadWebPanel(aURI);
- if (gWebPanelURI) {
- gWebPanelURI = "";
- sidebar.removeEventListener("load", asyncOpenWebPanel, true);
- }
- }
- else {
- // The panel is still being constructed. Attach an onload handler.
- if (!gWebPanelURI)
- sidebar.addEventListener("load", asyncOpenWebPanel, true);
- gWebPanelURI = aURI;
- }
- }
-
- function asyncOpenWebPanel(event)
- {
- var sidebar = document.getElementById("sidebar");
- if (gWebPanelURI && sidebar.contentDocument && sidebar.contentDocument.getElementById('web-panels-browser'))
- sidebar.contentWindow.loadWebPanel(gWebPanelURI);
- gWebPanelURI = "";
- sidebar.removeEventListener("load", asyncOpenWebPanel, true);
- }
-
- /*
- * - [ Dependencies ] ---------------------------------------------------------
- * utilityOverlay.js:
- * - gatherTextUnder
- */
-
- // Called whenever the user clicks in the content area,
- // except when left-clicking on links (special case)
- // should always return true for click to go through
- function contentAreaClick(event, fieldNormalClicks)
- {
- if (!event.isTrusted || event.getPreventDefault()) {
- return true;
- }
-
- var target = event.target;
- var linkNode;
-
- if (target instanceof HTMLAnchorElement ||
- target instanceof HTMLAreaElement ||
- target instanceof HTMLLinkElement) {
- if (target.hasAttribute("href"))
- linkNode = target;
-
- // xxxmpc: this is kind of a hack to work around a Gecko bug (see bug 266932)
- // we're going to walk up the DOM looking for a parent link node,
- // this shouldn't be necessary, but we're matching the existing behaviour for left click
- var parent = target.parentNode;
- while (parent) {
- if (parent instanceof HTMLAnchorElement ||
- parent instanceof HTMLAreaElement ||
- parent instanceof HTMLLinkElement) {
- if (parent.hasAttribute("href"))
- linkNode = parent;
- }
- parent = parent.parentNode;
- }
- }
- else {
- linkNode = event.originalTarget;
- while (linkNode && !(linkNode instanceof HTMLAnchorElement))
- linkNode = linkNode.parentNode;
- // <a> cannot be nested. So if we find an anchor without an
- // href, there is no useful <a> around the target
- if (linkNode && !linkNode.hasAttribute("href"))
- linkNode = null;
- }
- var wrapper = null;
- if (linkNode) {
- wrapper = linkNode;
- if (event.button == 0 && !event.ctrlKey && !event.shiftKey &&
- !event.altKey && !event.metaKey) {
- // A Web panel's links should target the main content area. Do this
- // if no modifier keys are down and if there's no target or the target equals
- // _main (the IE convention) or _content (the Mozilla convention).
- // XXX Now that markLinkVisited is gone, we may not need to field _main and
- // _content here.
- target = wrapper.getAttribute("target");
- if (fieldNormalClicks &&
- (!target || target == "_content" || target == "_main"))
- // IE uses _main, SeaMonkey uses _content, we support both
- {
- if (!wrapper.href)
- return true;
- if (wrapper.getAttribute("onclick"))
- return true;
- // javascript links should be executed in the current browser
- if (wrapper.href.substr(0, 11) === "javascript:")
- return true;
- // data links should be executed in the current browser
- if (wrapper.href.substr(0, 5) === "data:")
- return true;
-
- try {
- urlSecurityCheck(wrapper.href, wrapper.ownerDocument.nodePrincipal);
- }
- catch(ex) {
- return false;
- }
-
- var postData = { };
- var url = getShortcutOrURI(wrapper.href, postData);
- if (!url)
- return true;
- loadURI(url, null, postData.value, false);
- event.preventDefault();
- return false;
- }
- else if (linkNode.getAttribute("rel") == "sidebar") {
- // This is the Opera convention for a special link that - when clicked - allows
- // you to add a sidebar panel. We support the Opera convention here. The link's
- // title attribute contains the title that should be used for the sidebar panel.
- PlacesUIUtils.showMinimalAddBookmarkUI(makeURI(wrapper.href),
- wrapper.getAttribute("title"),
- null, null, true, true);
- event.preventDefault();
- return false;
- }
- }
- else {
- handleLinkClick(event, wrapper.href, linkNode);
- }
-
- return true;
- } else {
- // Try simple XLink
- var href, realHref, baseURI;
- linkNode = target;
- while (linkNode) {
- if (linkNode.nodeType == Node.ELEMENT_NODE) {
- wrapper = linkNode;
-
- realHref = wrapper.getAttributeNS("http://www.w3.org/1999/xlink", "href");
- if (realHref) {
- href = realHref;
- baseURI = wrapper.baseURI
- }
- }
- linkNode = linkNode.parentNode;
- }
- if (href) {
- href = makeURLAbsolute(baseURI, href);
- handleLinkClick(event, href, null);
- return true;
- }
- }
- if (event.button == 1 &&
- gPrefService.getBoolPref("middlemouse.contentLoadURL") &&
- !gPrefService.getBoolPref("general.autoScroll")) {
- middleMousePaste(event);
- }
- return true;
- }
-
- function handleLinkClick(event, href, linkNode)
- {
- var doc = event.target.ownerDocument;
-
- switch (event.button) {
- case 0: // if left button clicked
- //@line 4887 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
- if (event.ctrlKey) {
- //@line 4889 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
- openNewTabWith(href, doc, null, event, false);
- event.stopPropagation();
- return true;
- }
-
- if (event.shiftKey && event.altKey) {
- var feedService =
- Cc["@mozilla.org/browser/feeds/result-service;1"].
- getService(Ci.nsIFeedResultService);
- feedService.forcePreviewPage = true;
- loadURI(href, null, null, false);
- return false;
- }
-
- if (event.shiftKey) {
- openNewWindowWith(href, doc, null, false);
- event.stopPropagation();
- return true;
- }
-
- if (event.altKey) {
- saveURL(href, linkNode ? gatherTextUnder(linkNode) : "", null, true,
- true, doc.documentURIObject);
- return true;
- }
-
- return false;
- case 1: // if middle button clicked
- var tab;
- try {
- tab = gPrefService.getBoolPref("browser.tabs.opentabfor.middleclick")
- }
- catch(ex) {
- tab = true;
- }
- if (tab)
- openNewTabWith(href, doc, null, event, false);
- else
- openNewWindowWith(href, doc, null, false);
- event.stopPropagation();
- return true;
- }
- return false;
- }
-
- function middleMousePaste(event)
- {
- var url = readFromClipboard();
- if (!url)
- return;
- var postData = { };
- url = getShortcutOrURI(url, postData);
- if (!url)
- return;
-
- try {
- addToUrlbarHistory(url);
- } catch (ex) {
- // Things may go wrong when adding url to session history,
- // but don't let that interfere with the loading of the url.
- }
-
- openUILink(url,
- event,
- true /* ignore the fact this is a middle click */);
-
- event.stopPropagation();
- }
-
- /*
- * Note that most of this routine has been moved into C++ in order to
- * be available for all <browser> tags as well as gecko embedding. See
- * mozilla/content/base/src/nsContentAreaDragDrop.cpp.
- *
- * Do not add any new fuctionality here other than what is needed for
- * a standalone product.
- */
-
- var contentAreaDNDObserver = {
- onDrop: function (aEvent, aXferData, aDragSession)
- {
- var url = transferUtils.retrieveURLFromData(aXferData.data, aXferData.flavour.contentType);
-
- // valid urls don't contain spaces ' '; if we have a space it
- // isn't a valid url, or if it's a javascript: or data: url,
- // bail out
- if (!url || !url.length || url.indexOf(" ", 0) != -1 ||
- /^\s*(javascript|data):/.test(url))
- return;
-
- nsDragAndDrop.dragDropSecurityCheck(aEvent, aDragSession, url);
-
- switch (document.documentElement.getAttribute('windowtype')) {
- case "navigator:browser":
- var postData = { };
- var uri = getShortcutOrURI(url, postData);
- loadURI(uri, null, postData.value, false);
- break;
- case "navigator:view-source":
- viewSource(url);
- break;
- }
-
- // keep the event from being handled by the dragDrop listeners
- // built-in to gecko if they happen to be above us.
- aEvent.preventDefault();
- },
-
- getSupportedFlavours: function ()
- {
- var flavourSet = new FlavourSet();
- flavourSet.appendFlavour("text/x-moz-url");
- flavourSet.appendFlavour("text/unicode");
- flavourSet.appendFlavour("application/x-moz-file", "nsIFile");
- return flavourSet;
- }
-
- };
-
- function getBrowser()
- {
- if (!gBrowser)
- gBrowser = document.getElementById("content");
- return gBrowser;
- }
-
- function getNavToolbox()
- {
- if (!gNavToolbox)
- gNavToolbox = document.getElementById("navigator-toolbox");
- return gNavToolbox;
- }
-
- function MultiplexHandler(event)
- { try {
- var node = event.target;
- var name = node.getAttribute('name');
-
- if (name == 'detectorGroup') {
- SetForcedDetector(true);
- SelectDetector(event, false);
- } else if (name == 'charsetGroup') {
- var charset = node.getAttribute('id');
- charset = charset.substring('charset.'.length, charset.length)
- SetForcedCharset(charset);
- } else if (name == 'charsetCustomize') {
- //do nothing - please remove this else statement, once the charset prefs moves to the pref window
- } else {
- SetForcedCharset(node.getAttribute('id'));
- }
- } catch(ex) { alert(ex); }
- }
-
- function SelectDetector(event, doReload)
- {
- var uri = event.target.getAttribute("id");
- var prefvalue = uri.substring('chardet.'.length, uri.length);
- if ("off" == prefvalue) { // "off" is special value to turn off the detectors
- prefvalue = "";
- }
-
- try {
- var pref = Components.classes["@mozilla.org/preferences-service;1"]
- .getService(Components.interfaces.nsIPrefBranch);
- var str = Components.classes["@mozilla.org/supports-string;1"]
- .createInstance(Components.interfaces.nsISupportsString);
-
- str.data = prefvalue;
- pref.setComplexValue("intl.charset.detector",
- Components.interfaces.nsISupportsString, str);
- if (doReload) window.content.location.reload();
- }
- catch (ex) {
- dump("Failed to set the intl.charset.detector preference.\n");
- }
- }
-
- function SetForcedDetector(doReload)
- {
- BrowserSetForcedDetector(doReload);
- }
-
- function SetForcedCharset(charset)
- {
- BrowserSetForcedCharacterSet(charset);
- }
-
- function BrowserSetForcedCharacterSet(aCharset)
- {
- var docCharset = getBrowser().docShell.QueryInterface(
- Components.interfaces.nsIDocCharset);
- docCharset.charset = aCharset;
- // Save the forced character-set
- PlacesUtils.history.setCharsetForURI(getWebNavigation().currentURI, aCharset);
- BrowserReloadWithFlags(nsIWebNavigation.LOAD_FLAGS_CHARSET_CHANGE);
- }
-
- function BrowserSetForcedDetector(doReload)
- {
- getBrowser().documentCharsetInfo.forcedDetector = true;
- if (doReload)
- BrowserReloadWithFlags(nsIWebNavigation.LOAD_FLAGS_CHARSET_CHANGE);
- }
-
- function UpdateCurrentCharset()
- {
- // extract the charset from DOM
- var wnd = document.commandDispatcher.focusedWindow;
- if ((window == wnd) || (wnd == null)) wnd = window.content;
-
- // Uncheck previous item
- if (gPrevCharset) {
- var pref_item = document.getElementById('charset.' + gPrevCharset);
- if (pref_item)
- pref_item.setAttribute('checked', 'false');
- }
-
- var menuitem = document.getElementById('charset.' + wnd.document.characterSet);
- if (menuitem) {
- menuitem.setAttribute('checked', 'true');
- }
- }
-
- function UpdateCharsetDetector()
- {
- var prefvalue;
-
- try {
- var pref = Components.classes["@mozilla.org/preferences-service;1"]
- .getService(Components.interfaces.nsIPrefBranch);
- prefvalue = pref.getComplexValue("intl.charset.detector",
- Components.interfaces.nsIPrefLocalizedString).data;
- }
- catch (ex) {
- prefvalue = "";
- }
-
- if (prefvalue == "") prefvalue = "off";
- dump("intl.charset.detector = "+ prefvalue + "\n");
-
- prefvalue = 'chardet.' + prefvalue;
- var menuitem = document.getElementById(prefvalue);
-
- if (menuitem) {
- menuitem.setAttribute('checked', 'true');
- }
- }
-
- function UpdateMenus(event)
- {
- // use setTimeout workaround to delay checkmark the menu
- // when onmenucomplete is ready then use it instead of oncreate
- // see bug 78290 for the detail
- UpdateCurrentCharset();
- setTimeout(UpdateCurrentCharset, 0);
- UpdateCharsetDetector();
- setTimeout(UpdateCharsetDetector, 0);
- }
-
- function CreateMenu(node)
- {
- var observerService = Components.classes["@mozilla.org/observer-service;1"].getService(Components.interfaces.nsIObserverService);
- observerService.notifyObservers(null, "charsetmenu-selected", node);
- }
-
- function charsetLoadListener (event)
- {
- var charset = window.content.document.characterSet;
-
- if (charset.length > 0 && (charset != gLastBrowserCharset)) {
- if (!gCharsetMenu)
- gCharsetMenu = Components.classes['@mozilla.org/rdf/datasource;1?name=charset-menu'].getService().QueryInterface(Components.interfaces.nsICurrentCharsetListener);
- gCharsetMenu.SetCurrentCharset(charset);
- gPrevCharset = gLastBrowserCharset;
- gLastBrowserCharset = charset;
- }
- }
-
- /* Begin Page Style Functions */
- function getStyleSheetArray(frame)
- {
- var styleSheets = frame.document.styleSheets;
- var styleSheetsArray = new Array(styleSheets.length);
- for (var i = 0; i < styleSheets.length; i++) {
- styleSheetsArray[i] = styleSheets[i];
- }
- return styleSheetsArray;
- }
-
- function getAllStyleSheets(frameset)
- {
- var styleSheetsArray = getStyleSheetArray(frameset);
- for (var i = 0; i < frameset.frames.length; i++) {
- var frameSheets = getAllStyleSheets(frameset.frames[i]);
- styleSheetsArray = styleSheetsArray.concat(frameSheets);
- }
- return styleSheetsArray;
- }
-
- function stylesheetFillPopup(menuPopup)
- {
- var noStyle = menuPopup.firstChild;
- var persistentOnly = noStyle.nextSibling;
- var sep = persistentOnly.nextSibling;
- while (sep.nextSibling)
- menuPopup.removeChild(sep.nextSibling);
-
- var styleSheets = getAllStyleSheets(window.content);
- var currentStyleSheets = [];
- var styleDisabled = getMarkupDocumentViewer().authorStyleDisabled;
- var haveAltSheets = false;
- var altStyleSelected = false;
-
- for (var i = 0; i < styleSheets.length; ++i) {
- var currentStyleSheet = styleSheets[i];
-
- // Skip any stylesheets that don't match the screen media type.
- var media = currentStyleSheet.media.mediaText.toLowerCase();
- if (media && (media.indexOf("screen") == -1) && (media.indexOf("all") == -1))
- continue;
-
- if (currentStyleSheet.title) {
- if (!currentStyleSheet.disabled)
- altStyleSelected = true;
-
- haveAltSheets = true;
-
- var lastWithSameTitle = null;
- if (currentStyleSheet.title in currentStyleSheets)
- lastWithSameTitle = currentStyleSheets[currentStyleSheet.title];
-
- if (!lastWithSameTitle) {
- var menuItem = document.createElement("menuitem");
- menuItem.setAttribute("type", "radio");
- menuItem.setAttribute("label", currentStyleSheet.title);
- menuItem.setAttribute("data", currentStyleSheet.title);
- menuItem.setAttribute("checked", !currentStyleSheet.disabled && !styleDisabled);
- menuPopup.appendChild(menuItem);
- currentStyleSheets[currentStyleSheet.title] = menuItem;
- } else {
- if (currentStyleSheet.disabled)
- lastWithSameTitle.removeAttribute("checked");
- }
- }
- }
-
- noStyle.setAttribute("checked", styleDisabled);
- persistentOnly.setAttribute("checked", !altStyleSelected && !styleDisabled);
- persistentOnly.hidden = (window.content.document.preferredStyleSheetSet) ? haveAltSheets : false;
- sep.hidden = (noStyle.hidden && persistentOnly.hidden) || !haveAltSheets;
- return true;
- }
-
- function stylesheetInFrame(frame, title) {
- var docStyleSheets = frame.document.styleSheets;
-
- for (var i = 0; i < docStyleSheets.length; ++i) {
- if (docStyleSheets[i].title == title)
- return true;
- }
- return false;
- }
-
- function stylesheetSwitchFrame(frame, title) {
- var docStyleSheets = frame.document.styleSheets;
-
- for (var i = 0; i < docStyleSheets.length; ++i) {
- var docStyleSheet = docStyleSheets[i];
-
- if (title == "_nostyle")
- docStyleSheet.disabled = true;
- else if (docStyleSheet.title)
- docStyleSheet.disabled = (docStyleSheet.title != title);
- else if (docStyleSheet.disabled)
- docStyleSheet.disabled = false;
- }
- }
-
- function stylesheetSwitchAll(frameset, title) {
- if (!title || title == "_nostyle" || stylesheetInFrame(frameset, title)) {
- stylesheetSwitchFrame(frameset, title);
- }
- for (var i = 0; i < frameset.frames.length; i++) {
- stylesheetSwitchAll(frameset.frames[i], title);
- }
- }
-
- function setStyleDisabled(disabled) {
- getMarkupDocumentViewer().authorStyleDisabled = disabled;
- }
-
- /* End of the Page Style functions */
-
- var BrowserOffline = {
- /////////////////////////////////////////////////////////////////////////////
- // BrowserOffline Public Methods
- init: function ()
- {
- if (!this._uiElement)
- this._uiElement = document.getElementById("goOfflineMenuitem");
-
- var os = Components.classes["@mozilla.org/observer-service;1"].getService(Components.interfaces.nsIObserverService);
- os.addObserver(this, "network:offline-status-changed", false);
-
- var ioService = Components.classes["@mozilla.org/network/io-service;1"].
- getService(Components.interfaces.nsIIOService2);
-
- // if ioService is managing the offline status, then ioservice.offline
- // is already set correctly. We will continue to allow the ioService
- // to manage its offline state until the user uses the "Work Offline" UI.
-
- if (!ioService.manageOfflineStatus) {
- // set the initial state
- var isOffline = false;
- try {
- isOffline = gPrefService.getBoolPref("browser.offline");
- }
- catch (e) { }
- ioService.offline = isOffline;
- }
-
- this._updateOfflineUI(ioService.offline);
- },
-
- uninit: function ()
- {
- try {
- var os = Components.classes["@mozilla.org/observer-service;1"].getService(Components.interfaces.nsIObserverService);
- os.removeObserver(this, "network:offline-status-changed");
- } catch (ex) {
- }
- },
-
- toggleOfflineStatus: function ()
- {
- var ioService = Components.classes["@mozilla.org/network/io-service;1"].
- getService(Components.interfaces.nsIIOService2);
-
- // Stop automatic management of the offline status
- try {
- ioService.manageOfflineStatus = false;
- } catch (ex) {
- }
-
- if (!ioService.offline && !this._canGoOffline()) {
- this._updateOfflineUI(false);
- return;
- }
-
- ioService.offline = !ioService.offline;
-
- // Save the current state for later use as the initial state
- // (if there is no netLinkService)
- gPrefService.setBoolPref("browser.offline", ioService.offline);
- },
-
- /////////////////////////////////////////////////////////////////////////////
- // nsIObserver
- observe: function (aSubject, aTopic, aState)
- {
- if (aTopic != "network:offline-status-changed")
- return;
-
- this._updateOfflineUI(aState == "offline");
- },
-
- /////////////////////////////////////////////////////////////////////////////
- // BrowserOffline Implementation Methods
- _canGoOffline: function ()
- {
- var os = Components.classes["@mozilla.org/observer-service;1"].getService(Components.interfaces.nsIObserverService);
- if (os) {
- try {
- var cancelGoOffline = Components.classes["@mozilla.org/supports-PRBool;1"].createInstance(Components.interfaces.nsISupportsPRBool);
- os.notifyObservers(cancelGoOffline, "offline-requested", null);
-
- // Something aborted the quit process.
- if (cancelGoOffline.data)
- return false;
- }
- catch (ex) {
- }
- }
- return true;
- },
-
- _uiElement: null,
- _updateOfflineUI: function (aOffline)
- {
- var offlineLocked = gPrefService.prefIsLocked("network.online");
- if (offlineLocked)
- this._uiElement.setAttribute("disabled", "true");
-
- this._uiElement.setAttribute("checked", aOffline);
- }
- };
-
- var OfflineApps = {
- /////////////////////////////////////////////////////////////////////////////
- // OfflineApps Public Methods
- init: function ()
- {
- var obs = Cc["@mozilla.org/observer-service;1"].
- getService(Ci.nsIObserverService);
- obs.addObserver(this, "dom-storage-warn-quota-exceeded", false);
- obs.addObserver(this, "offline-cache-update-completed", false);
- },
-
- uninit: function ()
- {
- var obs = Cc["@mozilla.org/observer-service;1"].
- getService(Ci.nsIObserverService);
- obs.removeObserver(this, "dom-storage-warn-quota-exceeded");
- obs.removeObserver(this, "offline-cache-update-completed");
- },
-
- /////////////////////////////////////////////////////////////////////////////
- // OfflineApps Implementation Methods
-
- // XXX: _getBrowserWindowForContentWindow and _getBrowserForContentWindow
- // were taken from browser/components/feeds/src/WebContentConverter.
- _getBrowserWindowForContentWindow: function(aContentWindow) {
- return aContentWindow.QueryInterface(Ci.nsIInterfaceRequestor)
- .getInterface(Ci.nsIWebNavigation)
- .QueryInterface(Ci.nsIDocShellTreeItem)
- .rootTreeItem
- .QueryInterface(Ci.nsIInterfaceRequestor)
- .getInterface(Ci.nsIDOMWindow)
- .wrappedJSObject;
- },
-
- _getBrowserForContentWindow: function(aBrowserWindow, aContentWindow) {
- // This depends on pseudo APIs of browser.js and tabbrowser.xml
- aContentWindow = aContentWindow.top;
- var browsers = aBrowserWindow.getBrowser().browsers;
- for (var i = 0; i < browsers.length; ++i) {
- if (browsers[i].contentWindow == aContentWindow)
- return browsers[i];
- }
- },
-
- _getManifestURI: function(aWindow) {
- var attr = aWindow.document.documentElement.getAttribute("manifest");
- if (!attr) return null;
-
- try {
- var ios = Cc["@mozilla.org/network/io-service;1"].
- getService(Ci.nsIIOService);
-
- var contentURI = ios.newURI(aWindow.location.href, null, null);
- return ios.newURI(attr, aWindow.document.characterSet, contentURI);
- } catch (e) {
- return null;
- }
- },
-
- // A cache update isn't tied to a specific window. Try to find
- // the best browser in which to warn the user about space usage
- _getBrowserForCacheUpdate: function(aCacheUpdate) {
- // Prefer the current browser
- var uri = this._getManifestURI(gBrowser.mCurrentBrowser.contentWindow);
- if (uri && uri.equals(aCacheUpdate.manifestURI)) {
- return gBrowser.mCurrentBrowser;
- }
-
- var browsers = getBrowser().browsers;
- for (var i = 0; i < browsers.length; ++i) {
- uri = this._getManifestURI(browsers[i].contentWindow);
- if (uri && uri.equals(aCacheUpdate.manifestURI)) {
- return browsers[i];
- }
- }
-
- return null;
- },
-
- _warnUsage: function(aBrowser, aURI) {
- if (!aBrowser)
- return;
-
- var notificationBox = gBrowser.getNotificationBox(aBrowser);
- var notification = notificationBox.getNotificationWithValue("offline-app-usage");
- if (!notification) {
- var bundle_browser = document.getElementById("bundle_browser");
-
- var buttons = [{
- label: bundle_browser.getString("offlineApps.manageUsage"),
- accessKey: bundle_browser.getString("offlineApps.manageUsageAccessKey"),
- callback: OfflineApps.manage
- }];
-
- var warnQuota = gPrefService.getIntPref("offline-apps.quota.warn");
- const priority = notificationBox.PRIORITY_WARNING_MEDIUM;
- var message = bundle_browser.getFormattedString("offlineApps.usage",
- [ aURI.host,
- warnQuota / 1024 ]);
-
- notificationBox.appendNotification(message, "offline-app-usage",
- "chrome://browser/skin/Info.png",
- priority, buttons);
- }
-
- // Now that we've warned once, prevent the warning from showing up
- // again.
- var pm = Cc["@mozilla.org/permissionmanager;1"].
- getService(Ci.nsIPermissionManager);
- pm.add(aURI, "offline-app",
- Ci.nsIOfflineCacheUpdateService.ALLOW_NO_WARN);
- },
-
- // XXX: duplicated in preferences/advanced.js
- _getOfflineAppUsage: function (host)
- {
- var cacheService = Components.classes["@mozilla.org/network/cache-service;1"].
- getService(Components.interfaces.nsICacheService);
- var cacheSession = cacheService.createSession("HTTP-offline",
- Components.interfaces.nsICache.STORE_OFFLINE,
- true).
- QueryInterface(Components.interfaces.nsIOfflineCacheSession);
- var usage = cacheSession.getDomainUsage(host);
-
- var storageManager = Components.classes["@mozilla.org/dom/storagemanager;1"].
- getService(Components.interfaces.nsIDOMStorageManager);
- usage += storageManager.getUsage(host);
-
- return usage;
- },
-
- _checkUsage: function(aURI) {
- var pm = Cc["@mozilla.org/permissionmanager;1"].
- getService(Ci.nsIPermissionManager);
-
- // if the user has already allowed excessive usage, don't bother checking
- if (pm.testExactPermission(aURI, "offline-app") !=
- Ci.nsIOfflineCacheUpdateService.ALLOW_NO_WARN) {
- var usage = this._getOfflineAppUsage(aURI.asciiHost);
- var warnQuota = gPrefService.getIntPref("offline-apps.quota.warn");
- if (usage >= warnQuota * 1024) {
- return true;
- }
- }
-
- return false;
- },
-
- offlineAppRequested: function(aContentWindow) {
- if (!gPrefService.getBoolPref("browser.offline-apps.notify")) {
- return;
- }
-
- var browserWindow = this._getBrowserWindowForContentWindow(aContentWindow);
- var browser = this._getBrowserForContentWindow(browserWindow,
- aContentWindow);
-
- var currentURI = browser.webNavigation.currentURI;
- var pm = Cc["@mozilla.org/permissionmanager;1"].
- getService(Ci.nsIPermissionManager);
-
- // don't bother showing UI if the user has already made a decision
- if (pm.testExactPermission(currentURI, "offline-app") !=
- Ci.nsIPermissionManager.UNKNOWN_ACTION)
- return;
-
- try {
- if (gPrefService.getBoolPref("offline-apps.allow_by_default")) {
- // all pages can use offline capabilities, no need to ask the user
- return;
- }
- } catch(e) {
- // this pref isn't set by default, ignore failures
- }
-
- var notificationBox = gBrowser.getNotificationBox(browser);
- var notification = notificationBox.getNotificationWithValue("offline-app-requested");
- if (!notification) {
- var bundle_browser = document.getElementById("bundle_browser");
-
- var buttons = [{
- label: bundle_browser.getString("offlineApps.allow"),
- accessKey: bundle_browser.getString("offlineApps.allowAccessKey"),
- callback: function() { OfflineApps.allowSite(); }
- },{
- label: bundle_browser.getString("offlineApps.never"),
- accessKey: bundle_browser.getString("offlineApps.neverAccessKey"),
- callback: function() { OfflineApps.disallowSite(); }
- },{
- label: bundle_browser.getString("offlineApps.notNow"),
- accessKey: bundle_browser.getString("offlineApps.notNowAccessKey"),
- callback: function() { /* noop */ }
- }];
-
- const priority = notificationBox.PRIORITY_INFO_LOW;
- var message = bundle_browser.getFormattedString("offlineApps.available",
- [ currentURI.host ]);
- notificationBox.appendNotification(message, "offline-app-requested",
- "chrome://browser/skin/Info.png",
- priority, buttons);
- }
- },
-
- allowSite: function() {
- var currentURI = gBrowser.selectedBrowser.webNavigation.currentURI;
- var pm = Cc["@mozilla.org/permissionmanager;1"].
- getService(Ci.nsIPermissionManager);
- pm.add(currentURI, "offline-app", Ci.nsIPermissionManager.ALLOW_ACTION);
-
- // When a site is enabled while loading, <link rel="offline-resource">
- // resources will start fetching immediately. This one time we need to
- // do it ourselves.
- this._startFetching();
- },
-
- disallowSite: function() {
- var currentURI = gBrowser.selectedBrowser.webNavigation.currentURI;
- var pm = Cc["@mozilla.org/permissionmanager;1"].
- getService(Ci.nsIPermissionManager);
- pm.add(currentURI, "offline-app", Ci.nsIPermissionManager.DENY_ACTION);
- },
-
- manage: function() {
- openAdvancedPreferences("networkTab");
- },
-
- _startFetching: function() {
- var manifest = content.document.documentElement.getAttribute("manifest");
- if (!manifest)
- return;
-
- var ios = Cc["@mozilla.org/network/io-service;1"].
- getService(Ci.nsIIOService);
-
- var contentURI = ios.newURI(content.location.href, null, null);
- var manifestURI = ios.newURI(manifest, content.document.characterSet,
- contentURI);
-
- var updateService = Cc["@mozilla.org/offlinecacheupdate-service;1"].
- getService(Ci.nsIOfflineCacheUpdateService);
- updateService.scheduleUpdate(manifestURI, contentURI);
- },
-
- /////////////////////////////////////////////////////////////////////////////
- // nsIObserver
- observe: function (aSubject, aTopic, aState)
- {
- if (aTopic == "dom-storage-warn-quota-exceeded") {
- if (aSubject) {
- var uri = Cc["@mozilla.org/network/io-service;1"].
- getService(Ci.nsIIOService).
- newURI(aSubject.location.href, null, null);
-
- if (OfflineApps._checkUsage(uri)) {
- var browserWindow =
- this._getBrowserWindowForContentWindow(aSubject);
- var browser = this._getBrowserForContentWindow(browserWindow,
- aSubject);
- OfflineApps._warnUsage(browser, uri);
- }
- }
- } else if (aTopic == "offline-cache-update-completed") {
- var cacheUpdate = aSubject.QueryInterface(Ci.nsIOfflineCacheUpdate);
-
- var uri = cacheUpdate.manifestURI;
- if (OfflineApps._checkUsage(uri)) {
- var browser = this._getBrowserForCacheUpdate(cacheUpdate);
- if (browser) {
- OfflineApps._warnUsage(browser, cacheUpdate.manifestURI);
- }
- }
- }
- }
- };
-
- function WindowIsClosing()
- {
- var browser = getBrowser();
- var cn = browser.tabContainer.childNodes;
- var numtabs = cn.length;
- var reallyClose = true;
-
- for (var i = 0; reallyClose && i < numtabs; ++i) {
- var ds = browser.getBrowserForTab(cn[i]).docShell;
-
- if (ds.contentViewer && !ds.contentViewer.permitUnload())
- reallyClose = false;
- }
-
- if (!reallyClose)
- return false;
-
- // closeWindow takes a second optional function argument to open up a
- // window closing warning dialog if we're not quitting. (Quitting opens
- // up another dialog so we don't need to.)
- return closeWindow(false,
- function () {
- return browser.warnAboutClosingTabs(true);
- });
- }
-
- var MailIntegration = {
- sendLinkForWindow: function (aWindow) {
- this.sendMessage(aWindow.location.href,
- aWindow.document.title);
- },
-
- sendMessage: function (aBody, aSubject) {
- // generate a mailto url based on the url and the url's title
- var mailtoUrl = "mailto:";
- if (aBody) {
- mailtoUrl += "?body=" + encodeURIComponent(aBody);
- mailtoUrl += "&subject=" + encodeURIComponent(aSubject);
- }
-
- var ioService = Components.classes["@mozilla.org/network/io-service;1"]
- .getService(Components.interfaces.nsIIOService);
- var uri = ioService.newURI(mailtoUrl, null, null);
-
- // now pass this uri to the operating system
- this._launchExternalUrl(uri);
- },
-
- // a generic method which can be used to pass arbitrary urls to the operating
- // system.
- // aURL --> a nsIURI which represents the url to launch
- _launchExternalUrl: function (aURL) {
- var extProtocolSvc =
- Components.classes["@mozilla.org/uriloader/external-protocol-service;1"]
- .getService(Components.interfaces.nsIExternalProtocolService);
- if (extProtocolSvc)
- extProtocolSvc.loadUrl(aURL);
- }
- };
-
- function BrowserOpenAddonsMgr()
- {
- const EMTYPE = "Extension:Manager";
- var wm = Components.classes["@mozilla.org/appshell/window-mediator;1"]
- .getService(Components.interfaces.nsIWindowMediator);
- var theEM = wm.getMostRecentWindow(EMTYPE);
- if (theEM) {
- theEM.focus();
- return;
- }
-
- const EMURL = "chrome://mozapps/content/extensions/extensions.xul";
- const EMFEATURES = "chrome,menubar,extra-chrome,toolbar,dialog=no,resizable";
- window.openDialog(EMURL, "", EMFEATURES);
- }
-
- function escapeNameValuePair(aName, aValue, aIsFormUrlEncoded)
- {
- if (aIsFormUrlEncoded)
- return escape(aName + "=" + aValue);
- else
- return escape(aName) + "=" + escape(aValue);
- }
-
- function AddKeywordForSearchField()
- {
- var node = document.popupNode;
-
- var charset = node.ownerDocument.characterSet;
-
- var docURI = makeURI(node.ownerDocument.URL,
- charset);
-
- var formURI = makeURI(node.form.getAttribute("action"),
- charset,
- docURI);
-
- var spec = formURI.spec;
-
- var isURLEncoded =
- (node.form.method.toUpperCase() == "POST"
- && (node.form.enctype == "application/x-www-form-urlencoded" ||
- node.form.enctype == ""));
-
- var el, type;
- var formData = [];
-
- for (var i=0; i < node.form.elements.length; i++) {
- el = node.form.elements[i];
-
- if (!el.type) // happens with fieldsets
- continue;
-
- if (el == node) {
- formData.push((isURLEncoded) ? escapeNameValuePair(el.name, "%s", true) :
- // Don't escape "%s", just append
- escapeNameValuePair(el.name, "", false) + "%s");
- continue;
- }
-
- type = el.type.toLowerCase();
-
- if ((type == "text" || type == "hidden" || type == "textarea") ||
- ((type == "checkbox" || type == "radio") && el.checked)) {
- formData.push(escapeNameValuePair(el.name, el.value, isURLEncoded));
- } else if (el instanceof HTMLSelectElement && el.selectedIndex >= 0) {
- for (var j=0; j < el.options.length; j++) {
- if (el.options[j].selected)
- formData.push(escapeNameValuePair(el.name, el.options[j].value,
- isURLEncoded));
- }
- }
- }
-
- var postData;
-
- if (isURLEncoded)
- postData = formData.join("&");
- else
- spec += "?" + formData.join("&");
-
- var description = PlacesUIUtils.getDescriptionFromDocument(node.ownerDocument);
- PlacesUIUtils.showMinimalAddBookmarkUI(makeURI(spec), "", description, null,
- null, null, "", postData, charset);
- }
-
- function SwitchDocumentDirection(aWindow) {
- aWindow.document.dir = (aWindow.document.dir == "ltr" ? "rtl" : "ltr");
- for (var run = 0; run < aWindow.frames.length; run++)
- SwitchDocumentDirection(aWindow.frames[run]);
- }
-
- function missingPluginInstaller(){
- }
-
- function getPluginInfo(pluginElement)
- {
- var tagMimetype;
- var pluginsPage;
- if (pluginElement instanceof HTMLAppletElement) {
- tagMimetype = "application/x-java-vm";
- } else {
- if (pluginElement instanceof HTMLObjectElement) {
- pluginsPage = pluginElement.getAttribute("codebase");
- } else {
- pluginsPage = pluginElement.getAttribute("pluginspage");
- }
-
- // only attempt if a pluginsPage is defined.
- if (pluginsPage) {
- var doc = pluginElement.ownerDocument;
- var docShell = findChildShell(doc, gBrowser.selectedBrowser.docShell, null);
- try {
- pluginsPage = makeURI(pluginsPage, doc.characterSet, docShell.currentURI).spec;
- } catch (ex) {
- pluginsPage = "";
- }
- }
-
- tagMimetype = pluginElement.QueryInterface(Components.interfaces.nsIObjectLoadingContent)
- .actualType;
-
- if (tagMimetype == "") {
- tagMimetype = pluginElement.type;
- }
- }
-
- return {mimetype: tagMimetype, pluginsPage: pluginsPage};
- }
-
- missingPluginInstaller.prototype.installSinglePlugin = function(aEvent){
- var tabbrowser = getBrowser();
- var missingPluginsArray = {};
-
- var pluginInfo = getPluginInfo(aEvent.target);
- missingPluginsArray[pluginInfo.mimetype] = pluginInfo;
-
- gBrowser.selectedBrowser.addEventListener("NewPluginInstalled",
- gMissingPluginInstaller.refreshBrowserAndPlugins,
- false);
-
- if (missingPluginsArray) {
- window.openDialog("chrome://mozapps/content/plugins/pluginInstallerWizard.xul",
- "PFSWindow", "chrome,centerscreen,resizable=yes",
- {plugins: missingPluginsArray, browser: tabbrowser.selectedBrowser});
- }
-
- tabbrowser.selectedBrowser.removeEventListener("NewPluginInstalled",
- gMissingPluginInstaller.refreshBrowserAndPlugins,
- false);
-
- aEvent.preventDefault();
- }
-
- missingPluginInstaller.prototype.newMissingPlugin = function(aEvent){
- // Since we are expecting also untrusted events, make sure
- // that the target is a plugin
- if (!(aEvent.target instanceof Components.interfaces.nsIObjectLoadingContent))
- return;
-
- // For broken non-object plugin tags, register a click handler so
- // that the user can click the plugin replacement to get the new
- // plugin. Object tags can, and often do, deal with that themselves,
- // so don't stomp on the page developers toes.
-
- if (aEvent.type != "PluginBlocklisted" &&
- !(aEvent.target instanceof HTMLObjectElement)) {
- aEvent.target.addEventListener("click",
- gMissingPluginInstaller.installSinglePlugin,
- false);
- }
-
- try {
- if (gPrefService.getBoolPref("plugins.hide_infobar_for_missing_plugin"))
- return;
- } catch (ex) {} // if the pref is missing, treat it as false, which shows the infobar
-
- var tabbrowser = getBrowser();
- const browsers = tabbrowser.mPanelContainer.childNodes;
-
- var contentWindow = aEvent.target.ownerDocument.defaultView.top;
-
- var i = 0;
- for (; i < browsers.length; i++) {
- if (tabbrowser.getBrowserAtIndex(i).contentWindow == contentWindow)
- break;
- }
-
- var browser = tabbrowser.getBrowserAtIndex(i);
- if (!browser.missingPlugins)
- browser.missingPlugins = {};
-
- var pluginInfo = getPluginInfo(aEvent.target);
-
- browser.missingPlugins[pluginInfo.mimetype] = pluginInfo;
-
- var notificationBox = gBrowser.getNotificationBox(browser);
-
- // If there is already a missing plugin notification then do nothing
- if (notificationBox.getNotificationWithValue("missing-plugins"))
- return;
-
- var bundle_browser = document.getElementById("bundle_browser");
- var blockedNotification = notificationBox.getNotificationWithValue("blocked-plugins");
- const priority = notificationBox.PRIORITY_WARNING_MEDIUM;
- const iconURL = "chrome://mozapps/skin/plugins/pluginGeneric-16.png";
-
- if (aEvent.type == "PluginBlocklisted" && !blockedNotification) {
- var messageString = bundle_browser.getString("blockedpluginsMessage.title");
- var buttons = [{
- label: bundle_browser.getString("blockedpluginsMessage.infoButton.label"),
- accessKey: bundle_browser.getString("blockedpluginsMessage.infoButton.accesskey"),
- popup: null,
- callback: blocklistInfo
- }, {
- label: bundle_browser.getString("blockedpluginsMessage.searchButton.label"),
- accessKey: bundle_browser.getString("blockedpluginsMessage.searchButton.accesskey"),
- popup: null,
- callback: pluginsMissing
- }];
-
- notificationBox.appendNotification(messageString, "blocked-plugins",
- iconURL, priority, buttons);
- }
-
- if (aEvent.type == "PluginNotFound") {
- // Cancel any notification about blocklisting
- if (blockedNotification)
- blockedNotification.close();
-
- var messageString = bundle_browser.getString("missingpluginsMessage.title");
- var buttons = [{
- label: bundle_browser.getString("missingpluginsMessage.button.label"),
- accessKey: bundle_browser.getString("missingpluginsMessage.button.accesskey"),
- popup: null,
- callback: pluginsMissing
- }];
-
- notificationBox.appendNotification(messageString, "missing-plugins",
- iconURL, priority, buttons);
- }
- }
-
- missingPluginInstaller.prototype.refreshBrowserAndPlugins = function(aEvent) {
- // browser elements are anonymous so we can't just use target.
- var browser = aEvent.originalTarget;
- var notificationBox = gBrowser.getNotificationBox(browser);
- var notification = notificationBox.getNotificationWithValue("missing-plugins");
-
- // clear the plugin list, now that at least one plugin has been installed
- browser.missingPlugins = null;
- if (notification) {
- // reset UI
- notificationBox.removeNotification(notification);
- }
-
- // reload plugins
- var pm = Components.classes["@mozilla.org/plugin/manager;1"]
- .getService(Components.interfaces.nsIPluginManager);
- pm.reloadPlugins(false);
-
- // ... and reload the browser to activate new plugins available
- browser.reload();
- }
-
- function blocklistInfo()
- {
- var formatter = Components.classes["@mozilla.org/toolkit/URLFormatterService;1"]
- .getService(Components.interfaces.nsIURLFormatter);
- var url = formatter.formatURLPref("extensions.blocklist.detailsURL");
- gBrowser.loadOneTab(url, null, null, null, false, false);
- return true;
- }
-
- function pluginsMissing()
- {
- // get the urls of missing plugins
- var tabbrowser = getBrowser();
- var missingPluginsArray = tabbrowser.selectedBrowser.missingPlugins;
- tabbrowser.selectedBrowser.addEventListener("NewPluginInstalled",
- gMissingPluginInstaller.refreshBrowserAndPlugins,
- false);
- if (missingPluginsArray) {
- window.openDialog("chrome://mozapps/content/plugins/pluginInstallerWizard.xul",
- "PFSWindow", "chrome,centerscreen,resizable=yes",
- {plugins: missingPluginsArray, browser: tabbrowser.selectedBrowser});
- }
- tabbrowser.selectedBrowser.removeEventListener("NewPluginInstalled",
- gMissingPluginInstaller.refreshBrowserAndPlugins,
- false);
- }
-
- var gMissingPluginInstaller = new missingPluginInstaller();
-
- function convertFromUnicode(charset, str)
- {
- try {
- var unicodeConverter = Components
- .classes["@mozilla.org/intl/scriptableunicodeconverter"]
- .createInstance(Components.interfaces.nsIScriptableUnicodeConverter);
- unicodeConverter.charset = charset;
- str = unicodeConverter.ConvertFromUnicode(str);
- return str + unicodeConverter.Finish();
- } catch(ex) {
- return null;
- }
- }
-
- /**
- * The Feed Handler object manages discovery of RSS/ATOM feeds in web pages
- * and shows UI when they are discovered.
- */
- var FeedHandler = {
- /**
- * The click handler for the Feed icon in the location bar. Opens the
- * subscription page if user is not given a choice of feeds.
- * (Otherwise the list of available feeds will be presented to the
- * user in a popup menu.)
- */
- onFeedButtonClick: function(event) {
- event.stopPropagation();
-
- if (event.target.hasAttribute("feed") &&
- event.eventPhase == Event.AT_TARGET &&
- (event.button == 0 || event.button == 1)) {
- this.subscribeToFeed(null, event);
- }
- },
-
- /**
- * Called when the user clicks on the Feed icon in the location bar.
- * Builds a menu of unique feeds associated with the page, and if there
- * is only one, shows the feed inline in the browser window.
- * @param menuPopup
- * The feed list menupopup to be populated.
- * @returns true if the menu should be shown, false if there was only
- * one feed and the feed should be shown inline in the browser
- * window (do not show the menupopup).
- */
- buildFeedList: function(menuPopup) {
- var feeds = gBrowser.selectedBrowser.feeds;
- if (feeds == null) {
- // XXX hack -- menu opening depends on setting of an "open"
- // attribute, and the menu refuses to open if that attribute is
- // set (because it thinks it's already open). onpopupshowing gets
- // called after the attribute is unset, and it doesn't get unset
- // if we return false. so we unset it here; otherwise, the menu
- // refuses to work past this point.
- menuPopup.parentNode.removeAttribute("open");
- return false;
- }
-
- while (menuPopup.firstChild)
- menuPopup.removeChild(menuPopup.firstChild);
-
- if (feeds.length == 1) {
- var feedButton = document.getElementById("feed-button");
- if (feedButton)
- feedButton.setAttribute("feed", feeds[0].href);
- return false;
- }
-
- // Build the menu showing the available feed choices for viewing.
- for (var i = 0; i < feeds.length; ++i) {
- var feedInfo = feeds[i];
- var menuItem = document.createElement("menuitem");
- var baseTitle = feedInfo.title || feedInfo.href;
- var labelStr = gNavigatorBundle.getFormattedString("feedShowFeedNew", [baseTitle]);
- menuItem.setAttribute("label", labelStr);
- menuItem.setAttribute("feed", feedInfo.href);
- menuItem.setAttribute("tooltiptext", feedInfo.href);
- menuItem.setAttribute("crop", "center");
- menuPopup.appendChild(menuItem);
- }
- return true;
- },
-
- /**
- * Subscribe to a given feed. Called when
- * 1. Page has a single feed and user clicks feed icon in location bar
- * 2. Page has a single feed and user selects Subscribe menu item
- * 3. Page has multiple feeds and user selects from feed icon popup
- * 4. Page has multiple feeds and user selects from Subscribe submenu
- * @param href
- * The feed to subscribe to. May be null, in which case the
- * event target's feed attribute is examined.
- * @param event
- * The event this method is handling. Used to decide where
- * to open the preview UI. (Optional, unless href is null)
- */
- subscribeToFeed: function(href, event) {
- // Just load the feed in the content area to either subscribe or show the
- // preview UI
- if (!href)
- href = event.target.getAttribute("feed");
- urlSecurityCheck(href, gBrowser.contentPrincipal,
- Ci.nsIScriptSecurityManager.DISALLOW_INHERIT_PRINCIPAL);
- var feedURI = makeURI(href, document.characterSet);
- // Use the feed scheme so X-Moz-Is-Feed will be set
- // The value doesn't matter
- if (/^https?/.test(feedURI.scheme))
- href = "feed:" + href;
- this.loadFeed(href, event);
- },
-
- loadFeed: function(href, event) {
- var feeds = gBrowser.selectedBrowser.feeds;
- try {
- openUILink(href, event, false, true, false, null);
- }
- finally {
- // We might default to a livebookmarks modal dialog,
- // so reset that if the user happens to click it again
- gBrowser.selectedBrowser.feeds = feeds;
- }
- },
-
- /**
- * Update the browser UI to show whether or not feeds are available when
- * a page is loaded or the user switches tabs to a page that has feeds.
- */
- updateFeeds: function() {
- var feedButton = document.getElementById("feed-button");
- if (!this._feedMenuitem)
- this._feedMenuitem = document.getElementById("subscribeToPageMenuitem");
- if (!this._feedMenupopup)
- this._feedMenupopup = document.getElementById("subscribeToPageMenupopup");
-
- var feeds = gBrowser.mCurrentBrowser.feeds;
- if (!feeds || feeds.length == 0) {
- if (feedButton) {
- feedButton.removeAttribute("feeds");
- feedButton.removeAttribute("feed");
- feedButton.setAttribute("tooltiptext",
- gNavigatorBundle.getString("feedNoFeeds"));
- }
- this._feedMenuitem.setAttribute("disabled", "true");
- this._feedMenupopup.setAttribute("hidden", "true");
- this._feedMenuitem.removeAttribute("hidden");
- } else {
- if (feedButton) {
- feedButton.setAttribute("feeds", "true");
- feedButton.setAttribute("tooltiptext",
- gNavigatorBundle.getString("feedHasFeedsNew"));
- }
-
- if (feeds.length > 1) {
- this._feedMenuitem.setAttribute("hidden", "true");
- this._feedMenupopup.removeAttribute("hidden");
- if (feedButton)
- feedButton.removeAttribute("feed");
- } else {
- if (feedButton)
- feedButton.setAttribute("feed", feeds[0].href);
-
- this._feedMenuitem.setAttribute("feed", feeds[0].href);
- this._feedMenuitem.removeAttribute("disabled");
- this._feedMenuitem.removeAttribute("hidden");
- this._feedMenupopup.setAttribute("hidden", "true");
- }
- }
- },
-
- addFeed: function(feed, targetDoc) {
- if (feed) {
- // find which tab this is for, and set the attribute on the browser
- var browserForLink = gBrowser.getBrowserForDocument(targetDoc);
- if (!browserForLink) {
- // ??? this really shouldn't happen..
- return;
- }
-
- var feeds = [];
- if (browserForLink.feeds != null)
- feeds = browserForLink.feeds;
-
- feeds.push(feed);
- browserForLink.feeds = feeds;
- if (browserForLink == gBrowser || browserForLink == gBrowser.mCurrentBrowser) {
- var feedButton = document.getElementById("feed-button");
- if (feedButton) {
- feedButton.setAttribute("feeds", "true");
- feedButton.setAttribute("tooltiptext",
- gNavigatorBundle.getString("feedHasFeedsNew"));
- }
- }
- }
- }
- };
-
- //@line 39 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser-places.js"
-
-
- var StarUI = {
- _itemId: -1,
- uri: null,
- _batching: false,
-
- // nsISupports
- QueryInterface: function SU_QueryInterface(aIID) {
- if (aIID.equals(Ci.nsIDOMEventListener) ||
- aIID.equals(Ci.nsISupports))
- return this;
-
- throw Cr.NS_NOINTERFACE;
- },
-
- _element: function(aID) {
- return document.getElementById(aID);
- },
-
- // Edit-bookmark panel
- get panel() {
- delete this.panel;
- var element = this._element("editBookmarkPanel");
- // initially the panel is hidden
- // to avoid impacting startup / new window performance
- element.hidden = false;
- element.addEventListener("popuphidden", this, false);
- element.addEventListener("keypress", this, true);
- return this.panel = element;
- },
-
- // list of command elements (by id) to disable when the panel is opened
- _blockedCommands: ["cmd_close", "cmd_closeWindow"],
- _blockCommands: function SU__blockCommands() {
- for each(var key in this._blockedCommands) {
- var elt = this._element(key);
- // make sure not to permanently disable this item (see bug 409155)
- if (elt.hasAttribute("wasDisabled"))
- continue;
- if (elt.getAttribute("disabled") == "true")
- elt.setAttribute("wasDisabled", "true");
- else {
- elt.setAttribute("wasDisabled", "false");
- elt.setAttribute("disabled", "true");
- }
- }
- },
-
- _restoreCommandsState: function SU__restoreCommandsState() {
- for each(var key in this._blockedCommands) {
- var elt = this._element(key);
- if (elt.getAttribute("wasDisabled") != "true")
- elt.removeAttribute("disabled");
- elt.removeAttribute("wasDisabled");
- }
- },
-
- // nsIDOMEventListener
- handleEvent: function SU_handleEvent(aEvent) {
- switch (aEvent.type) {
- case "popuphidden":
- if (aEvent.originalTarget == this.panel) {
- if (!this._element("editBookmarkPanelContent").hidden)
- this.quitEditMode();
- this._restoreCommandsState();
- this._itemId = -1;
- this._uri = null;
- if (this._batching) {
- PlacesUIUtils.ptm.endBatch();
- this._batching = false;
- }
- }
- break;
- case "keypress":
- if (aEvent.keyCode == KeyEvent.DOM_VK_ESCAPE) {
- // In edit mode, if we're not editing a folder, the ESC key is mapped
- // to the cancel button
- if (!this._element("editBookmarkPanelContent").hidden) {
- var elt = aEvent.target;
- if (elt.localName != "tree" ||
- (elt.localName == "tree" && !elt.hasAttribute("editing")))
- this.cancelButtonOnCommand();
- }
- }
- else if (aEvent.keyCode == KeyEvent.DOM_VK_RETURN) {
- // hide the panel unless the folder tree is focused
- if (aEvent.target.localName != "tree")
- this.panel.hidePopup();
- }
- break;
- }
- },
-
- _overlayLoaded: false,
- _overlayLoading: false,
- showEditBookmarkPopup:
- function SU_showEditBookmarkPopup(aItemId, aAnchorElement, aPosition) {
- // Performance: load the overlay the first time the panel is opened
- // (see bug 392443).
- if (this._overlayLoading)
- return;
-
- if (this._overlayLoaded) {
- this._doShowEditBookmarkPanel(aItemId, aAnchorElement, aPosition);
- return;
- }
-
- var loadObserver = {
- _self: this,
- _itemId: aItemId,
- _anchorElement: aAnchorElement,
- _position: aPosition,
- observe: function (aSubject, aTopic, aData) {
- this._self._overlayLoading = false;
- this._self._overlayLoaded = true;
- this._self._doShowEditBookmarkPanel(this._itemId, this._anchorElement,
- this._position);
- }
- };
- this._overlayLoading = true;
- document.loadOverlay("chrome://browser/content/places/editBookmarkOverlay.xul",
- loadObserver);
- },
-
- _doShowEditBookmarkPanel:
- function SU__doShowEditBookmarkPanel(aItemId, aAnchorElement, aPosition) {
- this._blockCommands(); // un-done in the popuphiding handler
-
- var bundle = this._element("bundle_browser");
-
- // Set panel title:
- // if we are batching, i.e. the bookmark has been added now,
- // then show Page Bookmarked, else if the bookmark did already exist,
- // we are about editing it, then use Edit This Bookmark.
- this._element("editBookmarkPanelTitle").value =
- this._batching ?
- bundle.getString("editBookmarkPanel.pageBookmarkedTitle") :
- bundle.getString("editBookmarkPanel.editBookmarkTitle");
-
- // No description; show the Done, Cancel;
- // hide the Edit, Undo buttons
- this._element("editBookmarkPanelDescription").textContent = "";
- this._element("editBookmarkPanelBottomButtons").hidden = false;
- this._element("editBookmarkPanelContent").hidden = false;
- this._element("editBookmarkPanelEditButton").hidden = true;
- this._element("editBookmarkPanelUndoRemoveButton").hidden = true;
-
- // The remove button is shown only if we're not already batching, i.e.
- // if the cancel button/ESC does not remove the bookmark.
- this._element("editBookmarkPanelRemoveButton").hidden = this._batching;
-
- // unset the unstarred state, if set
- this._element("editBookmarkPanelStarIcon").removeAttribute("unstarred");
-
- this._itemId = aItemId !== undefined ? aItemId : this._itemId;
- this.beginBatch();
-
- // XXXmano hack: We push a no-op transaction on the stack so it's always
- // safe for the Cancel button to call undoTransaction after endBatch.
- // Otherwise, if no changes were done in the edit-item panel, the last
- // transaction on the undo stack may be the initial createItem transaction,
- // or worse, the batched editing of some other item.
- PlacesUIUtils.ptm.doTransaction({ doTransaction: function() { },
- undoTransaction: function() { },
- redoTransaction: function() { },
- isTransient: false,
- merge: function() { return false; } });
-
- if (this.panel.state == "closed") {
- // Consume dismiss clicks, see bug 400924
- this.panel.popupBoxObject
- .setConsumeRollupEvent(Ci.nsIPopupBoxObject.ROLLUP_CONSUME);
- this.panel.openPopup(aAnchorElement, aPosition, -1, -1);
- }
- else {
- var namePicker = this._element("editBMPanel_namePicker");
- namePicker.focus();
- namePicker.editor.selectAll();
- }
-
- gEditItemOverlay.initPanel(this._itemId,
- { hiddenRows: ["description", "location",
- "loadInSidebar", "keyword"] });
- },
-
- panelShown:
- function SU_panelShown(aEvent) {
- if (aEvent.target == this.panel) {
- if (!this._element("editBookmarkPanelContent").hidden) {
- var namePicker = this._element("editBMPanel_namePicker");
- namePicker.focus();
- namePicker.editor.selectAll();
- }
- else
- this.panel.focus();
- }
- },
-
- showPageBookmarkedNotification:
- function PCH_showPageBookmarkedNotification(aItemId, aAnchorElement, aPosition) {
- this._blockCommands(); // un-done in the popuphiding handler
-
- var bundle = this._element("bundle_browser");
- var brandBundle = this._element("bundle_brand");
- var brandShortName = brandBundle.getString("brandShortName");
-
- // "Page Bookmarked" title
- this._element("editBookmarkPanelTitle").value =
- bundle.getString("editBookmarkPanel.pageBookmarkedTitle");
-
- // description
- this._element("editBookmarkPanelDescription").textContent =
- bundle.getFormattedString("editBookmarkPanel.pageBookmarkedDescription",
- [brandShortName]);
-
- // show the "Edit.." button and the Remove Bookmark button, hide the
- // undo-remove-bookmark button.
- this._element("editBookmarkPanelEditButton").hidden = false;
- this._element("editBookmarkPanelRemoveButton").hidden = false;
- this._element("editBookmarkPanelUndoRemoveButton").hidden = true;
-
- // unset the unstarred state, if set
- this._element("editBookmarkPanelStarIcon").removeAttribute("unstarred");
-
- this._itemId = aItemId !== undefined ? aItemId : this._itemId;
- if (this.panel.state == "closed") {
- // Consume dismiss clicks, see bug 400924
- this.panel.popupBoxObject
- .setConsumeRollupEvent(Ci.nsIPopupBoxObject.ROLLUP_CONSUME);
- this.panel.openPopup(aAnchorElement, aPosition, -1, -1);
- }
- else
- this.panel.focus();
- },
-
- quitEditMode: function SU_quitEditMode() {
- this._element("editBookmarkPanelContent").hidden = true;
- this._element("editBookmarkPanelBottomButtons").hidden = true;
- gEditItemOverlay.uninitPanel(true);
- },
-
- editButtonCommand: function SU_editButtonCommand() {
- this.showEditBookmarkPopup();
- },
-
- cancelButtonOnCommand: function SU_cancelButtonOnCommand() {
- // The order here is important! We have to hide the panel first, otherwise
- // changes done as part of Undo may change the panel contents and by
- // that force it to commit more transactions
- this.panel.hidePopup();
- this.endBatch();
- PlacesUIUtils.ptm.undoTransaction();
- },
-
- removeBookmarkButtonCommand: function SU_removeBookmarkButtonCommand() {
- //@line 321 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser-places.js"
-
- // cache its uri so we can get the new itemId in the case of undo
- this._uri = PlacesUtils.bookmarks.getBookmarkURI(this._itemId);
-
- // remove all bookmarks for the bookmark's url, this also removes
- // the tags for the url
- var itemIds = PlacesUtils.getBookmarksForURI(this._uri);
- for (var i=0; i < itemIds.length; i++) {
- var txn = PlacesUIUtils.ptm.removeItem(itemIds[i]);
- PlacesUIUtils.ptm.doTransaction(txn);
- }
-
- //@line 338 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser-places.js"
- this.panel.hidePopup();
- },
-
- undoRemoveBookmarkCommand: function SU_undoRemoveBookmarkCommand() {
- // restore the bookmark by undoing the last transaction and go back
- // to the edit state
- this.endBatch();
- PlacesUIUtils.ptm.undoTransaction();
- this._itemId = PlacesUtils.getMostRecentBookmarkForURI(this._uri);
- this.showEditBookmarkPopup();
- },
-
- beginBatch: function SU_beginBatch() {
- if (!this._batching) {
- PlacesUIUtils.ptm.beginBatch();
- this._batching = true;
- }
- },
-
- endBatch: function SU_endBatch() {
- if (this._batching) {
- PlacesUIUtils.ptm.endBatch();
- this._batching = false;
- }
- }
- }
-
- var PlacesCommandHook = {
- /**
- * Adds a bookmark to the page loaded in the given browser.
- *
- * @param aBrowser
- * a <browser> element.
- * @param [optional] aParent
- * The folder in which to create a new bookmark if the page loaded in
- * aBrowser isn't bookmarked yet, defaults to the unfiled root.
- * @param [optional] aShowEditUI
- * whether or not to show the edit-bookmark UI for the bookmark item
- */
- bookmarkPage: function PCH_bookmarkPage(aBrowser, aParent, aShowEditUI) {
- var uri = aBrowser.currentURI;
- var itemId = PlacesUtils.getMostRecentBookmarkForURI(uri);
- if (itemId == -1) {
- // Copied over from addBookmarkForBrowser:
- // Bug 52536: We obtain the URL and title from the nsIWebNavigation
- // associated with a <browser/> rather than from a DOMWindow.
- // This is because when a full page plugin is loaded, there is
- // no DOMWindow (?) but information about the loaded document
- // may still be obtained from the webNavigation.
- var webNav = aBrowser.webNavigation;
- var url = webNav.currentURI;
- var title;
- var description;
- var charset;
- try {
- title = webNav.document.title || url.spec;
- description = PlacesUIUtils.getDescriptionFromDocument(webNav.document);
- charset = webNav.document.characterSet;
- }
- catch (e) { }
-
- if (aShowEditUI) {
- // If we bookmark the page here (i.e. page was not "starred" already)
- // but open right into the "edit" state, start batching here, so
- // "Cancel" in that state removes the bookmark.
- StarUI.beginBatch();
- }
-
- var parent = aParent != undefined ?
- aParent : PlacesUtils.unfiledBookmarksFolderId;
- var descAnno = { name: DESCRIPTION_ANNO, value: description };
- var txn = PlacesUIUtils.ptm.createItem(uri, parent, -1,
- title, null, [descAnno]);
- PlacesUIUtils.ptm.doTransaction(txn);
- // Set the character-set
- if (charset)
- PlacesUtils.history.setCharsetForURI(uri, charset);
- itemId = PlacesUtils.getMostRecentBookmarkForURI(uri);
- }
-
- // Revert the contents of the location bar
- handleURLBarRevert();
-
- // dock the panel to the star icon when possible, otherwise dock
- // it to the content area
- if (aBrowser.contentWindow == window.content) {
- var starIcon = aBrowser.ownerDocument.getElementById("star-button");
- if (starIcon && isElementVisible(starIcon)) {
- if (aShowEditUI)
- StarUI.showEditBookmarkPopup(itemId, starIcon, "after_end");
- //@line 432 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser-places.js"
- return;
- }
- }
-
- StarUI.showEditBookmarkPopup(itemId, aBrowser, "overlap");
- },
-
- /**
- * Adds a bookmark to the page loaded in the current tab.
- */
- bookmarkCurrentPage: function PCH_bookmarkCurrentPage(aShowEditUI, aParent) {
- this.bookmarkPage(getBrowser().selectedBrowser, aParent, aShowEditUI);
- },
-
- /**
- * Adds a bookmark to the page targeted by a link.
- * @param aParent
- * The folder in which to create a new bookmark if aURL isn't
- * bookmarked.
- * @param aURL (string)
- * the address of the link target
- * @param aTitle
- * The link text
- */
- bookmarkLink: function PCH_bookmarkLink(aParent, aURL, aTitle) {
- var linkURI = makeURI(aURL);
- var itemId = PlacesUtils.getMostRecentBookmarkForURI(linkURI);
- if (itemId == -1) {
- StarUI.beginBatch();
- var txn = PlacesUIUtils.ptm.createItem(linkURI, aParent, -1, aTitle);
- PlacesUIUtils.ptm.doTransaction(txn);
- itemId = PlacesUtils.getMostRecentBookmarkForURI(linkURI);
- }
-
- StarUI.showEditBookmarkPopup(itemId, getBrowser(), "overlap");
- },
-
- /**
- * This function returns a list of nsIURI objects characterizing the
- * tabs currently open in the browser. The URIs will appear in the
- * list in the order in which their corresponding tabs appeared. However,
- * only the first instance of each URI will be returned.
- *
- * @returns a list of nsIURI objects representing unique locations open
- */
- _getUniqueTabInfo: function BATC__getUniqueTabInfo() {
- var tabList = [];
- var seenURIs = [];
-
- var browsers = getBrowser().browsers;
- for (var i = 0; i < browsers.length; ++i) {
- var webNav = browsers[i].webNavigation;
- var uri = webNav.currentURI;
-
- // skip redundant entries
- if (uri.spec in seenURIs)
- continue;
-
- // add to the set of seen URIs
- seenURIs[uri.spec] = true;
- tabList.push(uri);
- }
- return tabList;
- },
-
- /**
- * Adds a folder with bookmarks to all of the currently open tabs in this
- * window.
- */
- bookmarkCurrentPages: function PCH_bookmarkCurrentPages() {
- var tabURIs = this._getUniqueTabInfo();
- PlacesUIUtils.showMinimalAddMultiBookmarkUI(tabURIs);
- },
-
-
- /**
- * Adds a Live Bookmark to a feed associated with the current page.
- * @param url
- * The nsIURI of the page the feed was attached to
- * @title title
- * The title of the feed. Optional.
- * @subtitle subtitle
- * A short description of the feed. Optional.
- */
- addLiveBookmark: function PCH_addLiveBookmark(url, feedTitle, feedSubtitle) {
- var ios =
- Cc["@mozilla.org/network/io-service;1"].
- getService(Ci.nsIIOService);
- var feedURI = ios.newURI(url, null, null);
-
- var doc = gBrowser.contentDocument;
- var title = (arguments.length > 1) ? feedTitle : doc.title;
-
- var description;
- if (arguments.length > 2)
- description = feedSubtitle;
- else
- description = PlacesUIUtils.getDescriptionFromDocument(doc);
-
- var toolbarIP =
- new InsertionPoint(PlacesUtils.bookmarks.toolbarFolder, -1);
- PlacesUIUtils.showMinimalAddLivemarkUI(feedURI, gBrowser.currentURI,
- title, description, toolbarIP, true);
- },
-
- /**
- * Opens the Places Organizer.
- * @param aLeftPaneRoot
- * The query to select in the organizer window - options
- * are: History, AllBookmarks, BookmarksMenu, BookmarksToolbar,
- * UnfiledBookmarks and Tags.
- */
- showPlacesOrganizer: function PCH_showPlacesOrganizer(aLeftPaneRoot) {
- var wm = Cc["@mozilla.org/appshell/window-mediator;1"].
- getService(Ci.nsIWindowMediator);
- var organizer = wm.getMostRecentWindow("Places:Organizer");
- if (!organizer) {
- // No currently open places window, so open one with the specified mode.
- openDialog("chrome://browser/content/places/places.xul",
- "", "chrome,toolbar=yes,dialog=no,resizable", aLeftPaneRoot);
- }
- else {
- organizer.PlacesOrganizer.selectLeftPaneQuery(aLeftPaneRoot);
- organizer.focus();
- }
- },
-
- deleteButtonOnCommand: function PCH_deleteButtonCommand() {
- PlacesUtils.bookmarks.removeItem(gEditItemOverlay.itemId);
-
- // remove all tags for the associated url
- PlacesUtils.tagging.untagURI(gEditItemOverlay._uri, null);
-
- this.panel.hidePopup();
- }
- };
-
- // Functions for the history menu.
- var HistoryMenu = {
- /**
- * popupshowing handler for the history menu.
- * @param aMenuPopup
- * XULNode for the history menupopup
- */
- onPopupShowing: function PHM_onPopupShowing(aMenuPopup) {
- var resultNode = aMenuPopup.getResultNode();
- var wasOpen = resultNode.containerOpen;
- resultNode.containerOpen = true;
- document.getElementById("endHistorySeparator").hidden =
- resultNode.childCount == 0;
-
- if (!wasOpen)
- resultNode.containerOpen = false;
-
- // HistoryMenu.toggleRecentlyClosedTabs is defined in browser.js
- this.toggleRecentlyClosedTabs();
- }
- };
-
- /**
- * Functions for handling events in the Bookmarks Toolbar and menu.
- */
- var BookmarksEventHandler = {
- /**
- * Handler for click event for an item in the bookmarks toolbar or menu.
- * Menus and submenus from the folder buttons bubble up to this handler.
- * Left-click is handled in the onCommand function.
- * When items are middle-clicked (or clicked with modifier), open in tabs.
- * If the click came through a menu, close the menu.
- * @param aEvent
- * DOMEvent for the click
- */
- onClick: function BT_onClick(aEvent) {
- // Only handle middle-click or left-click with modifiers.
- //@line 609 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser-places.js"
- var modifKey = aEvent.ctrlKey || aEvent.shiftKey;
- //@line 611 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser-places.js"
- if (aEvent.button == 2 || (aEvent.button == 0 && !modifKey))
- return;
-
- var target = aEvent.originalTarget;
- // If this event bubbled up from a menu or menuitem, close the menus.
- // Do this before opening tabs, to avoid hiding the open tabs confirm-dialog.
- if (target.localName == "menu" || target.localName == "menuitem") {
- for (node = target.parentNode; node; node = node.parentNode) {
- if (node.localName == "menupopup")
- node.hidePopup();
- else if (node.localName != "menu")
- break;
- }
- }
-
- if (target.node && PlacesUtils.nodeIsContainer(target.node)) {
- // Don't open the root folder in tabs when the empty area on the toolbar
- // is middle-clicked or when a non-bookmark item except for Open in Tabs)
- // in a bookmarks menupopup is middle-clicked.
- if (target.localName == "menu" || target.localName == "toolbarbutton")
- PlacesUIUtils.openContainerNodeInTabs(target.node, aEvent);
- }
- else if (aEvent.button == 1) {
- // left-clicks with modifier are already served by onCommand
- this.onCommand(aEvent);
- }
- },
-
- /**
- * Handler for command event for an item in the bookmarks toolbar.
- * Menus and submenus from the folder buttons bubble up to this handler.
- * Opens the item.
- * @param aEvent
- * DOMEvent for the command
- */
- onCommand: function BM_onCommand(aEvent) {
- var target = aEvent.originalTarget;
- if (target.node)
- PlacesUIUtils.openNodeWithEvent(target.node, aEvent);
- },
-
- /**
- * Handler for popupshowing event for an item in bookmarks toolbar or menu.
- * If the item isn't the main bookmarks menu, add an "Open All in Tabs"
- * menuitem to the bottom of the popup.
- * @param event
- * DOMEvent for popupshowing
- */
- onPopupShowing: function BM_onPopupShowing(event) {
- var target = event.originalTarget;
- if (!target.hasAttribute("placespopup"))
- return;
-
- // Check if the popup contains at least 2 menuitems with places nodes
- var numNodes = 0;
- var hasMultipleURIs = false;
- var currentChild = target.firstChild;
- while (currentChild) {
- if (currentChild.localName == "menuitem" && currentChild.node) {
- if (++numNodes == 2) {
- hasMultipleURIs = true;
- break;
- }
- }
- currentChild = currentChild.nextSibling;
- }
-
- var itemId = target._resultNode.itemId;
- var siteURIString = "";
- if (itemId != -1 && PlacesUtils.livemarks.isLivemark(itemId)) {
- var siteURI = PlacesUtils.livemarks.getSiteURI(itemId);
- if (siteURI)
- siteURIString = siteURI.spec;
- }
-
- if (!siteURIString && target._endOptOpenSiteURI) {
- target.removeChild(target._endOptOpenSiteURI);
- target._endOptOpenSiteURI = null;
- }
-
- if (!hasMultipleURIs && target._endOptOpenAllInTabs) {
- target.removeChild(target._endOptOpenAllInTabs);
- target._endOptOpenAllInTabs = null;
- }
-
- if (!(hasMultipleURIs || siteURIString)) {
- // we don't have to show any option
- if (target._endOptSeparator) {
- target.removeChild(target._endOptSeparator);
- target._endOptSeparator = null;
- target._endMarker = -1;
- }
- return;
- }
-
- if (!target._endOptSeparator) {
- // create a separator before options
- target._endOptSeparator = document.createElement("menuseparator");
- target._endOptSeparator.setAttribute("builder", "end");
- target._endMarker = target.childNodes.length;
- target.appendChild(target._endOptSeparator);
- }
-
- if (siteURIString && !target._endOptOpenSiteURI) {
- // Add "Open (Feed Name)" menuitem if it's a livemark with a siteURI
- target._endOptOpenSiteURI = document.createElement("menuitem");
- target._endOptOpenSiteURI.setAttribute("siteURI", siteURIString);
- target._endOptOpenSiteURI.setAttribute("oncommand",
- "openUILink(this.getAttribute('siteURI'), event);");
- // If a user middle-clicks this item we serve the oncommand event
- // We are using checkForMiddleClick because of Bug 246720
- // Note: stopPropagation is needed to avoid serving middle-click
- // with BT_onClick that would open all items in tabs
- target._endOptOpenSiteURI.setAttribute("onclick",
- "checkForMiddleClick(this, event); event.stopPropagation();");
- target._endOptOpenSiteURI.setAttribute("label",
- PlacesUIUtils.getFormattedString("menuOpenLivemarkOrigin.label",
- [target.parentNode.getAttribute("label")]));
- target.appendChild(target._endOptOpenSiteURI);
- }
-
- if (hasMultipleURIs && !target._endOptOpenAllInTabs) {
- // Add the "Open All in Tabs" menuitem if there are
- // at least two menuitems with places result nodes.
- target._endOptOpenAllInTabs = document.createElement("menuitem");
- target._endOptOpenAllInTabs.setAttribute("oncommand",
- "PlacesUIUtils.openContainerNodeInTabs(this.parentNode._resultNode, event);");
- target._endOptOpenAllInTabs.setAttribute("onclick",
- "checkForMiddleClick(this, event); event.stopPropagation();");
- target._endOptOpenAllInTabs.setAttribute("label",
- gNavigatorBundle.getString("menuOpenAllInTabs.label"));
- target.appendChild(target._endOptOpenAllInTabs);
- }
- },
-
- fillInBTTooltip: function(aTipElement) {
- // Fx2XP: Don't show tooltips for bookmarks under sub-folders
- if (aTipElement.localName != "toolbarbutton")
- return false;
-
- // Fx2XP: Only show tooltips for URL items
- if (!PlacesUtils.nodeIsURI(aTipElement.node))
- return false;
-
- var url = aTipElement.node.uri;
- if (!url)
- return false;
-
- var tooltipUrl = document.getElementById("btUrlText");
- tooltipUrl.value = url;
-
- var title = aTipElement.label;
- var tooltipTitle = document.getElementById("btTitleText");
- if (title && title != url) {
- tooltipTitle.hidden = false;
- tooltipTitle.value = title;
- }
- else
- tooltipTitle.hidden = true;
-
- // show tooltip
- return true;
- }
- };
-
- /**
- * Drag and Drop handling specifically for the Bookmarks Menu item in the
- * top level menu bar
- */
- var BookmarksMenuDropHandler = {
- /**
- * Need to tell the session to update the state of the cursor as we drag
- * over the Bookmarks Menu to show the "can drop" state vs. the "no drop"
- * state.
- */
- onDragOver: function BMDH_onDragOver(event, flavor, session) {
- session.canDrop = this.canDrop(event, session);
- },
-
- /**
- * Advertises the set of data types that can be dropped on the Bookmarks
- * Menu
- * @returns a FlavourSet object per nsDragAndDrop parlance.
- */
- getSupportedFlavours: function BMDH_getSupportedFlavours() {
- var view = document.getElementById("bookmarksMenuPopup");
- return view.getSupportedFlavours();
- },
-
- /**
- * Determine whether or not the user can drop on the Bookmarks Menu.
- * @param event
- * A dragover event
- * @param session
- * The active DragSession
- * @returns true if the user can drop onto the Bookmarks Menu item, false
- * otherwise.
- */
- canDrop: function BMDH_canDrop(event, session) {
- var ip = new InsertionPoint(PlacesUtils.bookmarksMenuFolderId, -1);
- return ip && PlacesControllerDragHelper.canDrop(ip);
- },
-
- /**
- * Called when the user drops onto the top level Bookmarks Menu item.
- * @param event
- * A drop event
- * @param data
- * Data that was dropped
- * @param session
- * The active DragSession
- */
- onDrop: function BMDH_onDrop(event, data, session) {
- // Put the item at the end of bookmark menu
- var ip = new InsertionPoint(PlacesUtils.bookmarksMenuFolderId, -1);
- PlacesControllerDragHelper.onDrop(ip);
- }
- };
-
- /**
- * Handles special drag and drop functionality for menus on the Bookmarks
- * Toolbar and Bookmarks Menu.
- */
- var PlacesMenuDNDController = {
- _springLoadDelay: 350, // milliseconds
-
- /**
- * All Drag Timers set for the Places UI
- */
- _timers: { },
-
- /**
- * Called when the user drags over the Bookmarks top level <menu> element.
- * @param event
- * The DragEnter event that spawned the opening.
- */
- onBookmarksMenuDragEnter: function PMDC_onDragEnter(event) {
- if ("loadTime" in this._timers)
- return;
-
- this._setDragTimer("loadTime", this._openBookmarksMenu,
- this._springLoadDelay, [event]);
- },
-
- /**
- * Creates a timer that will fire during a drag and drop operation.
- * @param id
- * The identifier of the timer being set
- * @param callback
- * The function to call when the timer "fires"
- * @param delay
- * The time to wait before calling the callback function
- * @param args
- * An array of arguments to pass to the callback function
- */
- _setDragTimer: function PMDC__setDragTimer(id, callback, delay, args) {
- if (!this._dragSupported)
- return;
-
- // Cancel this timer if it's already running.
- if (id in this._timers)
- this._timers[id].cancel();
-
- /**
- * An object implementing nsITimerCallback that calls a user-supplied
- * method with the specified args in the context of the supplied object.
- */
- function Callback(object, method, args) {
- this._method = method;
- this._args = args;
- this._object = object;
- }
- Callback.prototype = {
- notify: function C_notify(timer) {
- this._method.apply(this._object, this._args);
- }
- };
-
- var timer = Cc["@mozilla.org/timer;1"].createInstance(Ci.nsITimer);
- timer.initWithCallback(new Callback(this, callback, args), delay,
- timer.TYPE_ONE_SHOT);
- this._timers[id] = timer;
- },
-
- /**
- * Determines if a XUL element represents a container in the Bookmarks system
- * @returns true if the element is a container element (menu or
- *` menu-toolbarbutton), false otherwise.
- */
- _isContainer: function PMDC__isContainer(node) {
- return node.localName == "menu" ||
- node.localName == "toolbarbutton" && node.getAttribute("type") == "menu";
- },
-
- /**
- * Opens the Bookmarks Menu when it is dragged over. (This is special-cased,
- * since the toplevel Bookmarks <menu> is not a member of an existing places
- * container, as folders on the personal toolbar or submenus are.
- * @param event
- * The DragEnter event that spawned the opening.
- */
- _openBookmarksMenu: function PMDC__openBookmarksMenu(event) {
- if ("loadTime" in this._timers)
- delete this._timers.loadTime;
- if (event.target.id == "bookmarksMenu") {
- // If this is the bookmarks menu, tell its menupopup child to show.
- event.target.lastChild.setAttribute("autoopened", "true");
- event.target.lastChild.showPopup(event.target.lastChild);
- }
- },
-
- // Whether or not drag and drop to menus is supported on this platform
- // Dragging in menus is disabled on OS X due to various repainting issues.
- //@line 927 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser-places.js"
- _dragSupported: true
- //@line 929 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser-places.js"
- };
-
- var PlacesStarButton = {
- init: function PSB_init() {
- PlacesUtils.bookmarks.addObserver(this, false);
- },
-
- uninit: function PSB_uninit() {
- PlacesUtils.bookmarks.removeObserver(this);
- },
-
- QueryInterface: function PSB_QueryInterface(aIID) {
- if (aIID.equals(Ci.nsINavBookmarkObserver) ||
- aIID.equals(Ci.nsISupports))
- return this;
-
- throw Cr.NS_NOINTERFACE;
- },
-
- _starred: false,
- _batching: false,
-
- updateState: function PSB_updateState() {
- var starIcon = document.getElementById("star-button");
- if (!starIcon)
- return;
-
- var browserBundle = document.getElementById("bundle_browser");
- var uri = getBrowser().currentURI;
- this._starred = uri && (PlacesUtils.getMostRecentBookmarkForURI(uri) != -1 ||
- PlacesUtils.getMostRecentFolderForFeedURI(uri) != -1);
- if (this._starred) {
- starIcon.setAttribute("starred", "true");
- starIcon.setAttribute("tooltiptext", browserBundle.getString("starButtonOn.tooltip"));
- }
- else {
- starIcon.removeAttribute("starred");
- starIcon.setAttribute("tooltiptext", browserBundle.getString("starButtonOff.tooltip"));
- }
- },
-
- onClick: function PSB_onClick(aEvent) {
- if (aEvent.button == 0)
- PlacesCommandHook.bookmarkCurrentPage(this._starred);
-
- // don't bubble to the textbox so that the address won't be selected
- aEvent.stopPropagation();
- },
-
- // nsINavBookmarkObserver
- onBeginUpdateBatch: function PSB_onBeginUpdateBatch() {
- this._batching = true;
- },
-
- onEndUpdateBatch: function PSB_onEndUpdateBatch() {
- this.updateState();
- this._batching = false;
- },
-
- onItemAdded: function PSB_onItemAdded(aItemId, aFolder, aIndex) {
- if (!this._batching && !this._starred)
- this.updateState();
- },
-
- onItemRemoved: function PSB_onItemRemoved(aItemId, aFolder, aIndex) {
- if (!this._batching)
- this.updateState();
- },
-
- onItemChanged: function PSB_onItemChanged(aItemId, aProperty,
- aIsAnnotationProperty, aValue) {
- if (!this._batching && aProperty == "uri")
- this.updateState();
- },
-
- onItemVisited: function() { },
- onItemMoved: function() { }
- };
-
- /**
- * Various migration tasks.
- */
- function placesMigrationTasks() {
- // bug 398914 - move all post-data annotations from URIs to bookmarks
- // XXX - REMOVE ME FOR BETA 3 (bug 391419)
- if (gPrefService.getBoolPref("browser.places.migratePostDataAnnotations")) {
- const annosvc = PlacesUtils.annotations;
- var bmsvc = PlacesUtils.bookmarks;
- const oldPostDataAnno = "URIProperties/POSTData";
- var pages = annosvc.getPagesWithAnnotation(oldPostDataAnno, {});
- for (let i = 0; i < pages.length; i++) {
- try {
- let uri = pages[i];
- var postData = annosvc.getPageAnnotation(uri, oldPostDataAnno);
- // We can't know which URI+keyword combo this postdata was for, but
- // it's very likely that if this URI is bookmarked and has a keyword
- // *and* the URI has postdata, then this bookmark was using the
- // postdata. Propagate the annotation to all bookmarks for this URI
- // just to be safe.
- let bookmarks = bmsvc.getBookmarkIdsForURI(uri, {});
- for (let i = 0; i < bookmarks.length; i++) {
- var keyword = bmsvc.getKeywordForBookmark(bookmarks[i]);
- if (keyword)
- annosvc.setItemAnnotation(bookmarks[i], POST_DATA_ANNO, postData, 0, annosvc.EXPIRE_NEVER);
- }
- // Remove the old annotation.
- annosvc.removePageAnnotation(uri, oldPostDataAnno);
- } catch(ex) {}
- }
- gPrefService.setBoolPref("browser.places.migratePostDataAnnotations", false);
- }
-
- if (gPrefService.getBoolPref("browser.places.updateRecentTagsUri")) {
- var oldUriSpec = "place:folder=TAGS&group=3&queryType=1" +
- "&applyOptionsToContainers=1&sort=12&maxResults=10";
-
- var maxResults = 10;
- var newUriSpec = "place:type=" +
- Ci.nsINavHistoryQueryOptions.RESULTS_AS_TAG_QUERY +
- "&sort=" +
- Ci.nsINavHistoryQueryOptions.SORT_BY_LASTMODIFIED_DESCENDING +
- "&maxResults=" + maxResults;
-
- var ios = Cc["@mozilla.org/network/io-service;1"].
- getService(Ci.nsIIOService);
-
- var oldUri = ios.newURI(oldUriSpec, null, null);
- var newUri = ios.newURI(newUriSpec, null, null);
-
- let bmsvc = PlacesUtils.bookmarks;
- let bookmarks = bmsvc.getBookmarkIdsForURI( oldUri, {});
- for (let i = 0; i < bookmarks.length; i++) {
- bmsvc.changeBookmarkURI( bookmarks[i], newUri);
- }
- gPrefService.setBoolPref("browser.places.updateRecentTagsUri", false);
- }
- }
- //@line 6212 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
-
- /*
- //@line 40 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser-textZoom.js"
- */
-
- // From nsMouseScrollEvent::kIsHorizontal
- const MOUSE_SCROLL_IS_HORIZONTAL = 1 << 2;
-
- // One of the possible values for the mousewheel.* preferences.
- // From nsEventStateManager.cpp.
- const MOUSE_SCROLL_ZOOM = 3;
-
- /**
- * Controls the "full zoom" setting and its site-specific preferences.
- */
- var FullZoom = {
-
- //**************************************************************************//
- // Name & Values
-
- // The name of the setting. Identifies the setting in the prefs database.
- name: "browser.content.full-zoom",
-
- // The global value (if any) for the setting. Lazily loaded from the service
- // when first requested, then updated by the pref change listener as it changes.
- // If there is no global value, then this should be undefined.
- get globalValue FullZoom_get_globalValue() {
- var globalValue = this._cps.getPref(null, this.name);
- if (typeof globalValue != "undefined")
- globalValue = this._ensureValid(globalValue);
- delete this.globalValue;
- return this.globalValue = globalValue;
- },
-
-
- //**************************************************************************//
- // Convenience Getters
-
- // Content Pref Service
- get _cps FullZoom_get__cps() {
- delete this._cps;
- return this._cps = Cc["@mozilla.org/content-pref/service;1"].
- getService(Ci.nsIContentPrefService);
- },
-
- get _prefBranch FullZoom_get__prefBranch() {
- delete this._prefBranch;
- return this._prefBranch = Cc["@mozilla.org/preferences-service;1"].
- getService(Ci.nsIPrefBranch2);
- },
-
- // browser.zoom.siteSpecific preference cache
- siteSpecific: undefined,
-
-
- //**************************************************************************//
- // nsISupports
-
- // We can't use the Ci shortcut here because it isn't defined yet.
- interfaces: [Components.interfaces.nsIDOMEventListener,
- Components.interfaces.nsIObserver,
- Components.interfaces.nsIContentPrefObserver,
- Components.interfaces.nsISupportsWeakReference,
- Components.interfaces.nsISupports],
-
- QueryInterface: function FullZoom_QueryInterface(aIID) {
- if (!this.interfaces.some(function (v) aIID.equals(v)))
- throw Cr.NS_ERROR_NO_INTERFACE;
- return this;
- },
-
-
- //**************************************************************************//
- // Initialization & Destruction
-
- init: function FullZoom_init() {
- // Listen for scrollwheel events so we can save scrollwheel-based changes.
- window.addEventListener("DOMMouseScroll", this, false);
-
- // Register ourselves with the service so we know when our pref changes.
- this._cps.addObserver(this.name, this);
-
- // Listen for changes to the browser.zoom.siteSpecific preference so we can
- // enable/disable per-site saving and restoring of zoom levels accordingly.
- this.siteSpecific =
- this._prefBranch.getBoolPref("browser.zoom.siteSpecific");
- this._prefBranch.addObserver("browser.zoom.siteSpecific", this, true);
- },
-
- destroy: function FullZoom_destroy() {
- this._prefBranch.removeObserver("browser.zoom.siteSpecific", this);
- this._cps.removeObserver(this.name, this);
- window.removeEventListener("DOMMouseScroll", this, false);
- delete this._cps;
- },
-
-
- //**************************************************************************//
- // Event Handlers
-
- // nsIDOMEventListener
-
- handleEvent: function FullZoom_handleEvent(event) {
- switch (event.type) {
- case "DOMMouseScroll":
- this._handleMouseScrolled(event);
- break;
- }
- },
-
- _handleMouseScrolled: function FullZoom__handleMouseScrolled(event) {
- // Construct the "mousewheel action" pref key corresponding to this event.
- // Based on nsEventStateManager::GetBasePrefKeyForMouseWheel.
- var pref = "mousewheel";
- if (event.scrollFlags & MOUSE_SCROLL_IS_HORIZONTAL)
- pref += ".horizscroll";
-
- if (event.shiftKey)
- pref += ".withshiftkey";
- else if (event.ctrlKey)
- pref += ".withcontrolkey";
- else if (event.altKey)
- pref += ".withaltkey";
- else if (event.metaKey)
- pref += ".withmetakey";
- else
- pref += ".withnokey";
-
- pref += ".action";
-
- // Don't do anything if this isn't a "zoom" scroll event.
- var isZoomEvent = false;
- try {
- isZoomEvent = (gPrefService.getIntPref(pref) == MOUSE_SCROLL_ZOOM);
- } catch (e) {}
- if (!isZoomEvent)
- return;
-
- // XXX Lazily cache all the possible action prefs so we don't have to get
- // them anew from the pref service for every scroll event? We'd have to
- // make sure to observe them so we can update the cache when they change.
-
- // We have to call _applySettingToPref in a timeout because we handle
- // the event before the event state manager has a chance to apply the zoom
- // during nsEventStateManager::PostHandleEvent.
- window.setTimeout(function (self) { self._applySettingToPref() }, 0, this);
- },
-
- // nsIObserver
-
- observe: function (aSubject, aTopic, aData) {
- switch(aTopic) {
- case "nsPref:changed":
- switch(aData) {
- case "browser.zoom.siteSpecific":
- this.siteSpecific =
- this._prefBranch.getBoolPref("browser.zoom.siteSpecific");
- break;
- }
- break;
- }
- },
-
- // nsIContentPrefObserver
-
- onContentPrefSet: function FullZoom_onContentPrefSet(aGroup, aName, aValue) {
- if (aGroup == this._cps.grouper.group(gBrowser.currentURI))
- this._applyPrefToSetting(aValue);
- else if (aGroup == null) {
- this.globalValue = this._ensureValid(aValue);
-
- // If the current page doesn't have a site-specific preference,
- // then its zoom should be set to the new global preference now that
- // the global preference has changed.
- if (!this._cps.hasPref(gBrowser.currentURI, this.name))
- this._applyPrefToSetting();
- }
- },
-
- onContentPrefRemoved: function FullZoom_onContentPrefRemoved(aGroup, aName) {
- if (aGroup == this._cps.grouper.group(gBrowser.currentURI))
- this._applyPrefToSetting();
- else if (aGroup == null) {
- this.globalValue = undefined;
-
- // If the current page doesn't have a site-specific preference,
- // then its zoom should be set to the default preference now that
- // the global preference has changed.
- if (!this._cps.hasPref(gBrowser.currentURI, this.name))
- this._applyPrefToSetting();
- }
- },
-
- // location change observer
-
- onLocationChange: function FullZoom_onLocationChange(aURI) {
- if (!aURI)
- return;
- this._applyPrefToSetting(this._cps.getPref(aURI, this.name));
- },
-
- // update state of zoom type menu item
-
- updateMenu: function FullZoom_updateMenu() {
- var menuItem = document.getElementById("toggle_zoom");
-
- menuItem.setAttribute("checked", !ZoomManager.useFullZoom);
- },
-
- //**************************************************************************//
- // Setting & Pref Manipulation
-
- reduce: function FullZoom_reduce() {
- ZoomManager.reduce();
- this._applySettingToPref();
- },
-
- enlarge: function FullZoom_enlarge() {
- ZoomManager.enlarge();
- this._applySettingToPref();
- },
-
- reset: function FullZoom_reset() {
- if (typeof this.globalValue != "undefined")
- ZoomManager.zoom = this.globalValue;
- else
- ZoomManager.reset();
-
- this._removePref();
- },
-
- setSettingValue: function FullZoom_setSettingValue() {
- var value = this._cps.getPref(gBrowser.currentURI, this.name);
- this._applyPrefToSetting(value);
- },
-
- /**
- * Set the zoom level for the current tab.
- *
- * Per nsPresContext::setFullZoom, we can set the zoom to its current value
- * without significant impact on performance, as the setting is only applied
- * if it differs from the current setting. In fact getting the zoom and then
- * checking ourselves if it differs costs more.
- *
- * And perhaps we should always set the zoom even if it was more expensive,
- * since DocumentViewerImpl::SetTextZoom claims that child documents can have
- * a different text zoom (although it would be unusual), and it implies that
- * those child text zooms should get updated when the parent zoom gets set,
- * and perhaps the same is true for full zoom
- * (although DocumentViewerImpl::SetFullZoom doesn't mention it).
- *
- * So when we apply new zoom values to the browser, we simply set the zoom.
- * We don't check first to see if the new value is the same as the current
- * one.
- **/
- _applyPrefToSetting: function FullZoom__applyPrefToSetting(aValue) {
- if (!this.siteSpecific || gInPrintPreviewMode)
- return;
-
- try {
- if (typeof aValue != "undefined")
- ZoomManager.zoom = this._ensureValid(aValue);
- else if (typeof this.globalValue != "undefined")
- ZoomManager.zoom = this.globalValue;
- else
- ZoomManager.zoom = 1;
- }
- catch(ex) {}
- },
-
- _applySettingToPref: function FullZoom__applySettingToPref() {
- if (!this.siteSpecific || gInPrintPreviewMode)
- return;
-
- var zoomLevel = ZoomManager.zoom;
- this._cps.setPref(gBrowser.currentURI, this.name, zoomLevel);
- },
-
- _removePref: function FullZoom__removePref() {
- this._cps.removePref(gBrowser.currentURI, this.name);
- },
-
-
- //**************************************************************************//
- // Utilities
-
- _ensureValid: function FullZoom__ensureValid(aValue) {
- if (isNaN(aValue))
- return 1;
-
- if (aValue < ZoomManager.MIN)
- return ZoomManager.MIN;
-
- if (aValue > ZoomManager.MAX)
- return ZoomManager.MAX;
-
- return aValue;
- }
- };
- //@line 6214 "/build/buildd/firefox-3.0-3.0.14+build2+nobinonly/build-tree/mozilla/browser/base/content/browser.js"
-
- HistoryMenu.toggleRecentlyClosedTabs = function PHM_toggleRecentlyClosedTabs() {
- // enable/disable the Recently Closed Tabs sub menu
- var undoPopup = document.getElementById("historyUndoPopup");
-
- // get closed-tabs from nsSessionStore
- var ss = Cc["@mozilla.org/browser/sessionstore;1"].
- getService(Ci.nsISessionStore);
- // no restorable tabs, so disable menu
- if (ss.getClosedTabCount(window) == 0)
- undoPopup.parentNode.setAttribute("disabled", true);
- else
- undoPopup.parentNode.removeAttribute("disabled");
- }
-
- /**
- * Populate when the history menu is opened
- */
- HistoryMenu.populateUndoSubmenu = function PHM_populateUndoSubmenu() {
- var undoPopup = document.getElementById("historyUndoPopup");
-
- // remove existing menu items
- while (undoPopup.hasChildNodes())
- undoPopup.removeChild(undoPopup.firstChild);
-
- // get closed-tabs from nsSessionStore
- var ss = Cc["@mozilla.org/browser/sessionstore;1"].
- getService(Ci.nsISessionStore);
- // no restorable tabs, so make sure menu is disabled, and return
- if (ss.getClosedTabCount(window) == 0) {
- undoPopup.parentNode.setAttribute("disabled", true);
- return;
- }
-
- // enable menu
- undoPopup.parentNode.removeAttribute("disabled");
-
- // populate menu
- var undoItems = eval("(" + ss.getClosedTabData(window) + ")");
- for (var i = 0; i < undoItems.length; i++) {
- var m = document.createElement("menuitem");
- m.setAttribute("label", undoItems[i].title);
- if (undoItems[i].image)
- m.setAttribute("image", undoItems[i].image);
- m.setAttribute("class", "menuitem-iconic bookmark-item");
- m.setAttribute("value", i);
- m.setAttribute("oncommand", "undoCloseTab(" + i + ");");
- m.addEventListener("click", undoCloseMiddleClick, false);
- if (i == 0)
- m.setAttribute("key", "key_undoCloseTab");
- undoPopup.appendChild(m);
- }
-
- // "Open All in Tabs"
- var strings = gNavigatorBundle;
- undoPopup.appendChild(document.createElement("menuseparator"));
- m = undoPopup.appendChild(document.createElement("menuitem"));
- m.setAttribute("label", strings.getString("menuOpenAllInTabs.label"));
- m.setAttribute("accesskey", strings.getString("menuOpenAllInTabs.accesskey"));
- m.addEventListener("command", function() {
- for (var i = 0; i < undoItems.length; i++)
- undoCloseTab();
- }, false);
- }
-
- /**
- * Re-open a closed tab and put it to the end of the tab strip.
- * Used for a middle click.
- * @param aEvent
- * The event when the user clicks the menu item
- */
- function undoCloseMiddleClick(aEvent) {
- if (aEvent.button != 1)
- return;
-
- undoCloseTab(aEvent.originalTarget.value);
- getBrowser().moveTabToEnd();
- }
-
- /**
- * Re-open a closed tab.
- * @param aIndex
- * The index of the tab (via nsSessionStore.getClosedTabData)
- */
- function undoCloseTab(aIndex) {
- // wallpaper patch to prevent an unnecessary blank tab (bug 343895)
- var tabbrowser = getBrowser();
- var blankTabToRemove = null;
- if (tabbrowser.tabContainer.childNodes.length == 1 &&
- !gPrefService.getBoolPref("browser.tabs.autoHide") &&
- tabbrowser.selectedBrowser.sessionHistory.count < 2 &&
- tabbrowser.selectedBrowser.currentURI.spec == "about:blank" &&
- !tabbrowser.selectedBrowser.contentDocument.body.hasChildNodes() &&
- !tabbrowser.selectedTab.hasAttribute("busy"))
- blankTabToRemove = tabbrowser.selectedTab;
-
- var ss = Cc["@mozilla.org/browser/sessionstore;1"].
- getService(Ci.nsISessionStore);
- if (ss.getClosedTabCount(window) == 0)
- return;
- ss.undoCloseTab(window, aIndex || 0);
-
- if (blankTabToRemove)
- tabbrowser.removeTab(blankTabToRemove);
- }
-
- /**
- * Format a URL
- * eg:
- * echo formatURL("http://%LOCALE%.amo.mozilla.org/%LOCALE%/%APP%/%VERSION%/");
- * > http://en-US.amo.mozilla.org/en-US/firefox/3.0a1/
- *
- * Currently supported built-ins are LOCALE, APP, and any value from nsIXULAppInfo, uppercased.
- */
- function formatURL(aFormat, aIsPref) {
- var formatter = Cc["@mozilla.org/toolkit/URLFormatterService;1"].getService(Ci.nsIURLFormatter);
- return aIsPref ? formatter.formatURLPref(aFormat) : formatter.formatURL(aFormat);
- }
-
- /**
- * This also takes care of updating the command enabled-state when tabs are
- * created or removed.
- */
- function BookmarkAllTabsHandler() {
- this._command = document.getElementById("Browser:BookmarkAllTabs");
- gBrowser.addEventListener("TabOpen", this, true);
- gBrowser.addEventListener("TabClose", this, true);
- this._updateCommandState();
- }
-
- BookmarkAllTabsHandler.prototype = {
- QueryInterface: function BATH_QueryInterface(aIID) {
- if (aIID.equals(Ci.nsIDOMEventListener) ||
- aIID.equals(Ci.nsISupports))
- return this;
-
- throw Cr.NS_NOINTERFACE;
- },
-
- _updateCommandState: function BATH__updateCommandState(aTabClose) {
- var numTabs = gBrowser.tabContainer.childNodes.length;
-
- // The TabClose event is fired before the tab is removed from the DOM
- if (aTabClose)
- numTabs--;
-
- if (numTabs > 1)
- this._command.removeAttribute("disabled");
- else
- this._command.setAttribute("disabled", "true");
- },
-
- doCommand: function BATH_doCommand() {
- PlacesCommandHook.bookmarkCurrentPages();
- },
-
- // nsIDOMEventListener
- handleEvent: function(aEvent) {
- this._updateCommandState(aEvent.type == "TabClose");
- }
- };
-
- /**
- * Utility class to handle manipulations of the identity indicators in the UI
- */
- function IdentityHandler() {
- this._stringBundle = document.getElementById("bundle_browser");
- this._staticStrings = {};
- this._staticStrings[this.IDENTITY_MODE_DOMAIN_VERIFIED] = {
- encryption_label: this._stringBundle.getString("identity.encrypted")
- };
- this._staticStrings[this.IDENTITY_MODE_IDENTIFIED] = {
- encryption_label: this._stringBundle.getString("identity.encrypted")
- };
- this._staticStrings[this.IDENTITY_MODE_UNKNOWN] = {
- encryption_label: this._stringBundle.getString("identity.unencrypted")
- };
-
- this._cacheElements();
- }
-
- IdentityHandler.prototype = {
-
- // Mode strings used to control CSS display
- IDENTITY_MODE_IDENTIFIED : "verifiedIdentity", // High-quality identity information
- IDENTITY_MODE_DOMAIN_VERIFIED : "verifiedDomain", // Minimal SSL CA-signed domain verification
- IDENTITY_MODE_UNKNOWN : "unknownIdentity", // No trusted identity information
-
- // Cache the most recent SSLStatus and Location seen in checkIdentity
- _lastStatus : null,
- _lastLocation : null,
-
- /**
- * Build out a cache of the elements that we need frequently.
- */
- _cacheElements : function() {
- this._identityPopup = document.getElementById("identity-popup");
- this._identityBox = document.getElementById("identity-box");
- this._identityPopupContentBox = document.getElementById("identity-popup-content-box");
- this._identityPopupContentHost = document.getElementById("identity-popup-content-host");
- this._identityPopupContentOwner = document.getElementById("identity-popup-content-owner");
- this._identityPopupContentSupp = document.getElementById("identity-popup-content-supplemental");
- this._identityPopupContentVerif = document.getElementById("identity-popup-content-verifier");
- this._identityPopupEncLabel = document.getElementById("identity-popup-encryption-label");
- this._identityIconLabel = document.getElementById("identity-icon-label");
- },
-
- /**
- * Handler for mouseclicks on the "More Information" button in the
- * "identity-popup" panel.
- */
- handleMoreInfoClick : function(event) {
- displaySecurityInfo();
- event.stopPropagation();
- },
-
- /**
- * Helper to parse out the important parts of _lastStatus (of the SSL cert in
- * particular) for use in constructing identity UI strings
- */
- getIdentityData : function() {
- var result = {};
- var status = this._lastStatus.QueryInterface(Components.interfaces.nsISSLStatus);
- var cert = status.serverCert;
-
- // Human readable name of Subject
- result.subjectOrg = cert.organization;
-
- // SubjectName fields, broken up for individual access
- if (cert.subjectName) {
- result.subjectNameFields = {};
- cert.subjectName.split(",").forEach(function(v) {
- var field = v.split("=");
- this[field[0]] = field[1];
- }, result.subjectNameFields);
-
- // Call out city, state, and country specifically
- result.city = result.subjectNameFields.L;
- result.state = result.subjectNameFields.ST;
- result.country = result.subjectNameFields.C;
- }
-
- // Human readable name of Certificate Authority
- result.caOrg = cert.issuerOrganization || cert.issuerCommonName;
- result.cert = cert;
-
- return result;
- },
-
- /**
- * Determine the identity of the page being displayed by examining its SSL cert
- * (if available) and, if necessary, update the UI to reflect this. Intended to
- * be called by onSecurityChange
- *
- * @param PRUint32 state
- * @param JS Object location that mirrors an nsLocation (i.e. has .host and
- * .hostname and .port)
- */
- checkIdentity : function(state, location) {
- var currentStatus = gBrowser.securityUI
- .QueryInterface(Components.interfaces.nsISSLStatusProvider)
- .SSLStatus;
- this._lastStatus = currentStatus;
- this._lastLocation = location;
-
- if (state & Components.interfaces.nsIWebProgressListener.STATE_IDENTITY_EV_TOPLEVEL)
- this.setMode(this.IDENTITY_MODE_IDENTIFIED);
- else if (state & Components.interfaces.nsIWebProgressListener.STATE_SECURE_HIGH)
- this.setMode(this.IDENTITY_MODE_DOMAIN_VERIFIED);
- else
- this.setMode(this.IDENTITY_MODE_UNKNOWN);
- },
-
- /**
- * Return the eTLD+1 version of the current hostname
- */
- getEffectiveHost : function() {
- // Cache the eTLDService if this is our first time through
- if (!this._eTLDService)
- this._eTLDService = Cc["@mozilla.org/network/effective-tld-service;1"]
- .getService(Ci.nsIEffectiveTLDService);
- try {
- return this._eTLDService.getBaseDomainFromHost(this._lastLocation.hostname);
- } catch (e) {
- // If something goes wrong (e.g. hostname is an IP address) just fail back
- // to the full domain.
- return this._lastLocation.hostname;
- }
- },
-
- /**
- * Update the UI to reflect the specified mode, which should be one of the
- * IDENTITY_MODE_* constants.
- */
- setMode : function(newMode) {
- if (!this._identityBox) {
- // No identity box means the identity box is not visible, in which
- // case there's nothing to do.
- return;
- }
-
- this._identityBox.className = newMode;
- this.setIdentityMessages(newMode);
-
- // Update the popup too, if it's open
- if (this._identityPopup.state == "open")
- this.setPopupMessages(newMode);
- },
-
- /**
- * Set up the messages for the primary identity UI based on the specified mode,
- * and the details of the SSL cert, where applicable
- *
- * @param newMode The newly set identity mode. Should be one of the IDENTITY_MODE_* constants.
- */
- setIdentityMessages : function(newMode) {
- if (newMode == this.IDENTITY_MODE_DOMAIN_VERIFIED) {
- var iData = this.getIdentityData();
-
- // It would be sort of nice to use the CN= field in the cert, since that's
- // typically what we want here, but thanks to x509 certs being extensible,
- // it's not the only place you have to check, there can be more than one domain,
- // et cetera, ad nauseum. We know the cert is valid for location.host, so
- // let's just use that. Check the pref to determine how much of the verified
- // hostname to show
- var icon_label = "";
- switch (gPrefService.getIntPref("browser.identity.ssl_domain_display")) {
- case 2 : // Show full domain
- icon_label = this._lastLocation.hostname;
- break;
- case 1 : // Show eTLD.
- icon_label = this.getEffectiveHost();
- }
-
- // We need a port number for all lookups. If one hasn't been specified, use
- // the https default
- var lookupHost = this._lastLocation.host;
- if (lookupHost.indexOf(':') < 0)
- lookupHost += ":443";
-
- // Cache the override service the first time we need to check it
- if (!this._overrideService)
- this._overrideService = Components.classes["@mozilla.org/security/certoverride;1"]
- .getService(Components.interfaces.nsICertOverrideService);
-
- // Verifier is either the CA Org, for a normal cert, or a special string
- // for certs that are trusted because of a security exception.
- var tooltip = this._stringBundle.getFormattedString("identity.identified.verifier",
- [iData.caOrg]);
-
- // Check whether this site is a security exception. XPConnect does the right
- // thing here in terms of converting _lastLocation.port from string to int, but
- // the overrideService doesn't like undefined ports, so make sure we have
- // something in the default case (bug 432241).
- if (this._overrideService.hasMatchingOverride(this._lastLocation.hostname,
- (this._lastLocation.port || 443),
- iData.cert, {}, {}))
- tooltip = this._stringBundle.getString("identity.identified.verified_by_you");
- }
- else if (newMode == this.IDENTITY_MODE_IDENTIFIED) {
- // If it's identified, then we can populate the dialog with credentials
- iData = this.getIdentityData();
- tooltip = this._stringBundle.getFormattedString("identity.identified.verifier",
- [iData.caOrg]);
- if (iData.country)
- icon_label = this._stringBundle.getFormattedString("identity.identified.title_with_country",
- [iData.subjectOrg, iData.country]);
- else
- icon_label = iData.subjectOrg;
- }
- else {
- tooltip = this._stringBundle.getString("identity.unknown.tooltip");
- icon_label = "";
- }
-
- // Push the appropriate strings out to the UI
- this._identityBox.tooltipText = tooltip;
- this._identityIconLabel.value = icon_label;
- },
-
- /**
- * Set up the title and content messages for the identity message popup,
- * based on the specified mode, and the details of the SSL cert, where
- * applicable
- *
- * @param newMode The newly set identity mode. Should be one of the IDENTITY_MODE_* constants.
- */
- setPopupMessages : function(newMode) {
-
- this._identityPopup.className = newMode;
- this._identityPopupContentBox.className = newMode;
-
- // Set the static strings up front
- this._identityPopupEncLabel.textContent = this._staticStrings[newMode].encryption_label;
-
- // Initialize the optional strings to empty values
- var supplemental = "";
- var verifier = "";
-
- if (newMode == this.IDENTITY_MODE_DOMAIN_VERIFIED) {
- var iData = this.getIdentityData();
- var host = this.getEffectiveHost();
- var owner = this._stringBundle.getString("identity.ownerUnknown2");
- verifier = this._identityBox.tooltipText;
- supplemental = "";
- }
- else if (newMode == this.IDENTITY_MODE_IDENTIFIED) {
- // If it's identified, then we can populate the dialog with credentials
- iData = this.getIdentityData();
- host = this.getEffectiveHost();
- owner = iData.subjectOrg;
- verifier = this._identityBox.tooltipText;
-
- // Build an appropriate supplemental block out of whatever location data we have
- if (iData.city)
- supplemental += iData.city + "\n";
- if (iData.state && iData.country)
- supplemental += this._stringBundle.getFormattedString("identity.identified.state_and_country",
- [iData.state, iData.country]);
- else if (iData.state) // State only
- supplemental += iData.state;
- else if (iData.country) // Country only
- supplemental += iData.country;
- }
- else {
- // These strings will be hidden in CSS anyhow
- host = "";
- owner = "";
- }
-
- // Push the appropriate strings out to the UI
- this._identityPopupContentHost.textContent = host;
- this._identityPopupContentOwner.textContent = owner;
- this._identityPopupContentSupp.textContent = supplemental;
- this._identityPopupContentVerif.textContent = verifier;
- },
-
- hideIdentityPopup : function() {
- this._identityPopup.hidePopup();
- },
-
- /**
- * Click handler for the identity-box element in primary chrome.
- */
- handleIdentityButtonEvent : function(event) {
-
- event.stopPropagation();
-
- if ((event.type == "click" && event.button != 0) ||
- (event.type == "keypress" && event.charCode != KeyEvent.DOM_VK_SPACE &&
- event.keyCode != KeyEvent.DOM_VK_RETURN))
- return; // Left click, space or enter only
-
- // Revert the contents of the location bar, see bug 406779
- handleURLBarRevert();
-
- // Make sure that the display:none style we set in xul is removed now that
- // the popup is actually needed
- this._identityPopup.hidden = false;
-
- // Tell the popup to consume dismiss clicks, to avoid bug 395314
- this._identityPopup.popupBoxObject
- .setConsumeRollupEvent(Ci.nsIPopupBoxObject.ROLLUP_CONSUME);
-
- // Update the popup strings
- this.setPopupMessages(this._identityBox.className);
-
- // Now open the popup, anchored off the primary chrome element
- this._identityPopup.openPopup(this._identityBox, 'after_start');
- }
- };
-
- var gIdentityHandler;
-
- /**
- * Returns the singleton instance of the identity handler class. Should always be
- * used instead of referencing the global variable directly or creating new instances
- */
- function getIdentityHandler() {
- if (!gIdentityHandler)
- gIdentityHandler = new IdentityHandler();
- return gIdentityHandler;
- }
-
- let DownloadMonitorPanel = {
- //////////////////////////////////////////////////////////////////////////////
- //// DownloadMonitorPanel Member Variables
-
- _panel: null,
- _activeStr: null,
- _pausedStr: null,
- _lastTime: Infinity,
- _listening: false,
-
- //////////////////////////////////////////////////////////////////////////////
- //// DownloadMonitorPanel Public Methods
-
- /**
- * Initialize the status panel and member variables
- */
- init: function DMP_init() {
- // Load the modules to help display strings
- Cu.import("resource://gre/modules/DownloadUtils.jsm");
- Cu.import("resource://gre/modules/PluralForm.jsm");
-
- // Initialize "private" member variables
- this._panel = document.getElementById("download-monitor");
-
- // Cache the status strings
- let (bundle = document.getElementById("bundle_browser")) {
- this._activeStr = bundle.getString("activeDownloads");
- this._pausedStr = bundle.getString("pausedDownloads");
- }
-
- gDownloadMgr.addListener(this);
- this._listening = true;
-
- this.updateStatus();
- },
-
- uninit: function DMP_uninit() {
- if (this._listening)
- gDownloadMgr.removeListener(this);
- },
-
- /**
- * Update status based on the number of active and paused downloads
- */
- updateStatus: function DMP_updateStatus() {
- let numActive = gDownloadMgr.activeDownloadCount;
-
- // Hide the panel and reset the "last time" if there's no downloads
- if (numActive == 0) {
- this._panel.hidden = true;
- this._lastTime = Infinity;
-
- return;
- }
-
- // Find the download with the longest remaining time
- let numPaused = 0;
- let maxTime = -Infinity;
- let dls = gDownloadMgr.activeDownloads;
- while (dls.hasMoreElements()) {
- let dl = dls.getNext().QueryInterface(Ci.nsIDownload);
- if (dl.state == gDownloadMgr.DOWNLOAD_DOWNLOADING) {
- // Figure out if this download takes longer
- if (dl.speed > 0 && dl.size > 0)
- maxTime = Math.max(maxTime, (dl.size - dl.amountTransferred) / dl.speed);
- else
- maxTime = -1;
- }
- else if (dl.state == gDownloadMgr.DOWNLOAD_PAUSED)
- numPaused++;
- }
-
- // Get the remaining time string and last sec for time estimation
- let timeLeft;
- [timeLeft, this._lastTime] = DownloadUtils.getTimeLeft(maxTime, this._lastTime);
-
- // Figure out how many downloads are currently downloading
- let numDls = numActive - numPaused;
- let status = this._activeStr;
-
- // If all downloads are paused, show the paused message instead
- if (numDls == 0) {
- numDls = numPaused;
- status = this._pausedStr;
- }
-
- // Get the correct plural form and insert the number of downloads and time
- // left message if necessary
- status = PluralForm.get(numDls, status);
- status = status.replace("#1", numDls);
- status = status.replace("#2", timeLeft);
-
- // Update the panel and show it
- this._panel.label = status;
- this._panel.hidden = false;
- },
-
- //////////////////////////////////////////////////////////////////////////////
- //// nsIDownloadProgressListener
-
- /**
- * Update status for download progress changes
- */
- onProgressChange: function() {
- this.updateStatus();
- },
-
- /**
- * Update status for download state changes
- */
- onDownloadStateChange: function() {
- this.updateStatus();
- },
-
- onStateChange: function(aWebProgress, aRequest, aStateFlags, aStatus, aDownload) {
- },
-
- onSecurityChange: function(aWebProgress, aRequest, aState, aDownload) {
- },
-
- //////////////////////////////////////////////////////////////////////////////
- //// nsISupports
-
- QueryInterface: XPCOMUtils.generateQI([Ci.nsIDownloadProgressListener]),
- };
-